Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
7answers
3k views

Write a non-recursive traversal of a Binary Search Tree using constant space and O(n) run time

This is not homework, this is an interview question. The catch here is that the algorithm should be constant space. I'm pretty clueless on how to do this without a stack, I'd post what I've written ...
15
votes
3answers
10k views

Post order traversal of binary tree without recursion

Does anyone know the algorithm for doing a post order traversal of a binary tree WITHOUT using recursion. Any information would be greatly appreciated.
14
votes
9answers
553 views

When do you decide to use a visitors for your objects?

I always thought an object needs the data and the messages to act on it. When would you want a method that is extrinsic to the object? What rule of thumb do you follow to have a visitor? This is ...
13
votes
1answer
2k views

please explain morris inorder tree traversal without using stacks or recursion

Can someone please help me understand the following Morris inorder tree traversal algorithm without using stacks or recursion ? I was trying to understand how it works, but its just escaping me. 1. ...
12
votes
7answers
5k views

Getting a modified preorder tree traversal model (nested set) into a <ul>

I am trying to get my data which is hierarchically set up with a tree traversal model into an < ul> in order to show on my site. Here is my code: function getCats($) { // retrieve all children ...
11
votes
2answers
3k views

NAT Traversal with Java

I'm trying to find a way to communicate between two NAT-ed nodes using Java. My requirements pretty much align with the ICE-specification; i.e. I want to try STUN first and then fall back to relaying ...
10
votes
5answers
4k views

Iterating over element attributes with jQuery

I know individual attributes can be retrieved with the attr() method, but I'm trying to iterate over all of the attributes for an element. For context, I'm using jQuery on some XML... <items> ...
9
votes
4answers
13k views

reconstructing a tree from its preorder and postorder lists

Consider the situation where you have two lists of nodes of which all you know is that one is a representation of a preorder traversal of some tree and the other a representation of a postorder ...
8
votes
5answers
5k views

How do you iterate backwards through an STL list?

I'm writing some cross-platform code between Windows and Mac. If list::end() "returns an iterator that addresses the location succeeding the last element in a list" and can be checked when traversing ...
7
votes
6answers
4k views

How to select certain child node in TreeView, C#

I am having a problem with selecting a certain child node. What I want to achieve: I you have this treeview for example (one parent with two child nodes): Parent -Child with a value 5 -Child with ...
6
votes
1answer
102 views

My alernative to nested sets for arbitrary-depth hierarchical data sets: Good or Bad?

While recreating my CMS, I wanted an alternative to the traditional parent/child approach for managing the sitemap / page hierarchy. I had remembered seeing the nested set model a while back, but ...
6
votes
8answers
417 views

Getting nested set model into a <ul> but hiding “closed” subtrees

Based on Getting a modified preorder tree traversal model (nested set) into a <ul> One of answers gave right code to display full tree. What i need is to always show first level (depth=0) and ...
6
votes
2answers
110 views

This is ugly and there has to be a better way to write it in jQuery

$(this).parent().parent().parent().parent().find('[name=reply_to_id]'); Thats just stupid looking, but its the best way i can think of writing it. I tried parentsUntil('li') but that didnt work at ...
6
votes
5answers
294 views

How can you reverse traversal through a c# collection?

Is it possible to have a foreach statement that will traverse through a Collections object in reverse order? If not a foreach statement is there any other way? Thanks.
5
votes
3answers
188 views

normalize boolean expression for caching reasons. is there a more efficient way than truth tables?

My current project is an advanced tag database with boolean retrieval features. Records are being queried with boolean expressions like such (e.g. in a music database): funky-music and not (live or ...
5
votes
4answers
626 views

Traversing and filtering a tree in haskell

I am pretty new to Haskell (still working on totally understanding monads). I have a problem where I have a tree like structure type Tree = [DataA] data DataA = DataA1 [DataB] | ...
5
votes
2answers
977 views

Construct a Tree

How can I construct a tree given its inorder and preorder traversal? I am just looking for an efficient algorithm.
4
votes
1answer
334 views

In Pyramid, using traversal, how do create dynamic urls?

I am new to Pyramid and have created an application. I have a database with a table of categories. A category might be color with the attributes Red and Green, and another category might be size with ...
4
votes
1answer
176 views

Get a random element in single direction linked list by one time traverse

I have a single direction linked list without knowing its size. I want to get a random element in this list, and I just have one time chance to traverse the list. (I am not allowed to traverse twice ...
4
votes
3answers
154 views

When two trees are equal?

If in-order traversal of two binrary trees (not binary search trees) are the same, does it guarantee that the two trees are the same? if answer is no, then what about both in-order and pre-order ...
4
votes
4answers
313 views

Applying a Logarithm to Navigate a Tree

I had once known of a way to use logarithms to move from one leaf of a tree to the next "in-order" leaf of a tree. I think it involved taking a position value (rank?) of the "current" leaf and using ...
4
votes
2answers
446 views

Binary search tree traversal that compares two pointers for equality

I'm reading the Cormen algorithms book (binary search tree chapter) and it says that there are two ways to traverse the tree without recursion: using stack and a more complicated but elegant ...
4
votes
6answers
1k views

Traversing a binary tree in C

I'm trying to traverse a binary tree in C. My tree contains an AST node (abstract syntax tree node for compiler). ASTnode reserves nodetype which specifies given node's type (i.e INT OP or CHAR and ...
4
votes
2answers
1k views

KD-Tree traversal (raytracing) - am I missing a case?

I'm trying to traverse a 3D KD-Tree in my raytracer. The Tree is correct, but there seems to be something wrong with my traversal algorithm since I'm getting some errors compared to using a ...
4
votes
3answers
1k views

How would I traverse elements between two known elements in the dom using jquery?

I want to allow the user to click a start point and then click an ending point and be able to manipulate various form elements between the two points that were selected. The page is a table with ...
4
votes
3answers
2k views

Isometric projection in 2d coordinate system

What equation is needed to move a point on an isometric plane in a 2d space? I've looked several places on the tubes. Mostly here. and I haven't been able to decipher it. I'm not a math major, ...
3
votes
1answer
132 views

Graph traversal in Scala

Graph traversal (DFS and BFS) implementations I know use a mutable set of "visited" vertices. How would you implement them with only immutable data structures? I saw this question. Now I wonder if ...
3
votes
5answers
60 views

java array traversal in circular manner

I have an array which have 1 2 3 4 5 values. array a = [ 1 , 2, 3, 4, 5] Now i want to traverse it in circular manner. like i want to print 2 3 4 5 1 or 3 4 5 1 2 or 5 1 2 3 4 and so on. any ...
3
votes
2answers
63 views

Cant get previous element?

I need to get the previous element of an element found by using "contains" - prev and prevAll('span') aren't working. Any ideas? Thanks! <script> $(document).ready(function(){ ...
3
votes
2answers
116 views

How can I iterate starting at a particular key in a LinkedHashMap?

If I have a data structure Stock { String Symbol; LinkedHashMap<Date,Double> DateForPrice; } I know in the LinkedHashMap, I can get the stock price of specific date without traversing ...
3
votes
1answer
370 views

Traverse the DOM tree

As most (all?) PHP libraries that do HTML sanitization such as HTML Purifier are heavily dependant on regex, I thought trying to write a HTML sanitizer that uses the DOMDocument and related classes ...
3
votes
1answer
407 views

Graph traversal with A* algorithm

Hey, I'm AI Student and gonna try my homework that is implementation of A* algorithm in order to traversal a graph. i use c++ codes and what i made for now is below code which is only a Graph class + ...
3
votes
1answer
548 views

Implementing depth-first graph traversal

I have conflicting information about depth first traversal and could use some help in understanding how to build a program. Given a certain graph, I want to print a sequence of vertices. The user will ...
3
votes
2answers
269 views

Enumerating all paths in a tree

I was wondering how to best implement a tree data structure to be able to enumerate paths of all levels. Let me explain it with the following example: A / \ B C | /\ D E F ...
3
votes
2answers
113 views

Cheating traversal

I'm developing a plone4 site on which every user have a sortable inventory of items. The ATFolder's folder_content view is ideal for this. The only problem is that instead of an URL like this: ...
3
votes
1answer
172 views

Which algorithm would be suitable here? Traversing a series of interconnected nodes, covering them all with minimal repetition

I'm helping out a friend, writing him a program. He is re-recording the soundtrack to the old Lucasarts game Tie Fighter. The game used the iMuse system - each 'track' was made up of a number of small ...
3
votes
1answer
134 views

How to get a parent element's index in jQuery

I'm having some trouble writing a jQuery function and could use a little help. Here's what I'd like to accomplish: I have a ul element with 5 li children. Elsewhere on the page, I have a container ...
3
votes
2answers
590 views

Dynamic Array traversal in PHP

I want to build a hierarchy from a one-dimensional array and can (almost) do so with a more or less hardcoded code. How can I make the code dynamic? Perhaps with while(isset($array[$key])) { ... }? ...
3
votes
3answers
299 views

jQuery - How to select elements that do NOT have a class?

How do I get elements that do not have any class names? <td class="B A">A03<sub>reserved</sub></td> <td class="B R">R70</td> ...
3
votes
2answers
1k views

Building a Quadtree

I'm attempting to use a quadtree (a 4-ary tree) to hold the information in a given BMP. I'm struggling to figure out how to build the tree given any BMP. Basically the structure is such that every ...
3
votes
2answers
281 views

How to do transform a tree using Scrap Your Boilerplate?

I am new to Haskell, so I am trying to figure out how to do tree traversals. Here is the Company example (with a slight change) that I have seen in several papers data Company = C [Dept] ...
3
votes
5answers
912 views

Need help in returning from a recursive method

I am trying to trace the path of a node in a binary tree (not a binary search tree). Given a node, I am trying to print the values of the path from the root. I have written the following program. ...
3
votes
3answers
1k views

NAT traversal with Java

I want to connect to computers, each one of them behind a NAT router. I read that STUN only works with one computer behind a NAT router. Is that true? If so, how can I solve that double-NAT problem? ...
3
votes
8answers
2k views

Traverse Matrix in Diagonal strips

I thought this problem had a trivial solution, couple of for loops and some fancy counters, but apparently it is rather more complicated. So my question is, how would you write (in C) a function ...
3
votes
3answers
705 views

NHibernate Aggregate Traversal (C#)

My application has a very simple model right now and I'm trying to find the best way to traverse through an aggregate. As you can see in my model diagram at the bottom, I have an account, a trip and a ...
3
votes
3answers
2k views

How to get nodes lying inside a range with javascript?

I'm trying to get all the DOM nodes that are within a range object, what's the best way to do this? var selection = window.getSelection(); //what the user has selected var range = ...
3
votes
4answers
1k views

About Trees and Prefix (Polish) Notation?

My MIPS Assembly class required me to read in an expression of unknown size into a Parse Tree. I've never had to deal with trees, so this is how I went around storing values: Lets say the user ...
3
votes
3answers
408 views

unique path in a directed graph

I'm designing an algorithm for class that will determine if a graph is unique with respect to a vertex v such that for any u <> v there is at most one path from v to u. I've started by using BFS to ...
3
votes
4answers
280 views

Traversing a unidirectional tree efficiently

I've got a unidirectional tree of objects, in which each objects points to its parent. Given an object, I need to obtain its entire subtree of descendants, as a collection of objects. The objects are ...
2
votes
1answer
47 views

AVL tree in-order traversal is not working

My AVL tree is implemented in Java using a two-dimensional array of integers avlTree[35][5] - The columns represent: [0] - Height Left [1] - Left Child [2] - Data [3] - Right Child [4] - Height ...

1 2 3 4 5