Tagged Questions
The tree-traversal tag has no wiki summary.
21
votes
4answers
12k views
Breadth First Vs Depth First
When Traversing a Tree/Graph what is the difference between Breadth First and Depth first? Any coding or pseudocode examples would be great.
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 ...
17
votes
7answers
8k views
Help me understand Inorder Traversal without using recursion
I am able to understand preorder traversal without using recursion, but I'm having a hard time with inorder traversal. I just don't seem to get it, perhaps, because I haven't understood the inner ...
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. ...
8
votes
2answers
678 views
Catamorphism and tree-traversing in Haskell
I am impatient, looking forward to understanding catamorphism related to this SO question :)
I have only practiced the beginning of Real World Haskell tutorial. So, Maybe I'm gonna ask for way too ...
8
votes
5answers
1k views
Tree traversal algorithm for directory structures with a lot of files
When recursively traversing through a directory structure, what is the most efficient algorithm to use if you have more files than directories? I notice that when using depth-first traversal, it seems ...
6
votes
4answers
301 views
Parallel tree traversal in C#
I need to traverse a tree quickly, and I would like to do it in parallel. I'd rather use the parallel extensions than manually spin up a bunch of threads.
My current code looks something like this:
...
6
votes
3answers
1k views
Real world pre/post-order tree traversal examples
I understand pre-order, in-order, and post-order tree traversal algorithms just fine. (Reference). I understand a few uses: in-order for traversing binary search trees in order, pre-order for cloning ...
5
votes
3answers
157 views
Traversing a general tree structure starting from an arbitrary node in C#
I need tree traversal algorithms for arbitrary trees in both Depth-first and Breadth-first Traversal order. The tricky part is that I need to be able to start from an arbitrary node and continue until ...
5
votes
10answers
10k views
In-order tree traversal
I have the following text from an academic course I took a while ago about in-order traversal (they also call it pancaking) of a binary tree (not BST):
In-order tree traversal
Draw a line around ...
4
votes
2answers
63 views
string-append to files in a directory with Scheme
Please note first of all that this is a homework question so I'm not looking for straight code or anything like that, just for someone to maybe help me with my logic.
The assignment is in DrRacket. ...
4
votes
4answers
4k views
Pre-order to post-order traversal
If the pre-order traversal of a binary search tree is 6, 2, 1, 4, 3, 7, 10, 9, 11, how to get the post-order traversal?
4
votes
6answers
2k views
How can i get selector from jQuery object
$("*").click(function(){
$(this); // how can i get selector from $(this) ?
});
Is there easy way to get selector from $(this) or something like that? There is a way, how to select element by ...
4
votes
2answers
330 views
Visualisation of Tree Hierachy in HTML
I am looking of inspiration for doing interaction design on a hierachy/tree structure. (products with a number of subproducts, rules that apply for selecting subproducts).
I want to have a tree where ...
3
votes
5answers
276 views
How to find the number of nodes at level k of a binary tree without using Breadth-first order traversal?
Given this binary tree (actually, the binary tree can be random and dynamic, this is just an example...):
See link for the binary tree image: binary tree example
This are the given facts:
All ...
3
votes
2answers
129 views
balanced binary tree visit with a twist
Looking for an in-place O(N) algorithm which prints the node pair(while traversing the tree) like below for a given balanced binary tree:
a
b c
d e ...
3
votes
3answers
259 views
Idiomatic Python: Propagating yields or flattening sequences?
I'm writing a breadth depth-first tree traversal function, and what I want to do is this:
def traverse(node):
yield node
for n in node.children:
yield_all traverse(n) # << if ...
3
votes
3answers
919 views
Can I do inorder traversal of a binary tree without recursion and stack?
Can anyone give me a solution for traversing a binary tree in inorder without recursion and without using a stack?
2
votes
1answer
103 views
InOrder tree traversal
How can I implement InOrder traversal on this kind of tree? I need to print the operators too (like 3-2-1).
I have these classes:
public class BinaryOperator extends Value {
private Value ...
2
votes
1answer
59 views
Traverse object and return matching key / values
I have a series of objects containing product information that I need to use to filter the available product options. (i.e. Customer selects radio button with value option id 25, I need to filter the ...
2
votes
1answer
364 views
Python - Tree traversal question
I have a hard time with tree traversal, and so avoid it like the plague... normally.
I have a class that's sort-of (slightly simplified version here, but functionally the same) like:
class ...
2
votes
2answers
269 views
Recursive directory traversal/tree consumes extreme amounts of memory
I have written a recursive directory traversal method in C# (hosted from an asp.net page). The code works as I intended (I enumerate a list of shares on a target machine then recurse through the ...
2
votes
3answers
1k views
What is the time complexity of tree traversal?
What is the time complexity of tree traversal, I'm sure it must be obvious but my poor brain can work it out right now.
2
votes
2answers
443 views
Depth First Traversal on BeautifulSoup Parse Tree
Is there a way to do a DFT on a BeautifulSoup parse tree? I'm trying to do something like starting at the root, usually , get all the child elements and then for each child element get their children, ...
2
votes
2answers
310 views
Wrap Multiple <p> elements into <div> between <h3>
using jQuery I would like to transform this:
<h3>Question 1</h3>
<p>Answer 1 P1</p>
<p>Answer 1 P2</p>
<h3>Question 2</h3>
<p>Answer 2 ...
2
votes
3answers
170 views
Selecting non-nested subnodes with JQuery
I have a HTML structure that contains nested divs with the container class:
<div class="container" id="0">
<div id="1">
<div class="container" id="2">
<div ...
2
votes
1answer
427 views
Using Abstract base class type to traverse entire JAXB Object tree
The system hardware I write software for is physically connect via hardware in a tree structure. The data model in our application is a Tree. For our new rewrite, we're using JAXB to create the data ...
2
votes
2answers
296 views
SceneGraph traversal in Haskell
I want to implement a simple SceneGraph in Haskell using Data.Tree consisting of Transform and Shape nodes. In a SceneGraph the spatial transformation is accumulated while traversing and applied to ...
2
votes
2answers
304 views
BST preorder traversal and writting tree content to temporary array
I'm trying to write binary search tree's content to temporary array in order to use in main. However I'm not sure how to do it... I have tried something like this:
void Book::preorder(TreeNode *ptr, ...
2
votes
2answers
445 views
C++ TCL (tree container library): How to traverse a tree from a node straight to root
I am using this library to hold information about tree structure:
http://www.datasoftsolutions.net/tree_container_library/overview.php
Here is simplified version of my C++ code:
#include ...
2
votes
3answers
1k views
Strategy to implement tree traversing algorithm in parallel?
I have implemented an iterative algorithm, where each iteration involves a pre-order tree traversal (sometimes called downwards accumulation) followed by a post-order tree traversal (upwards ...
2
votes
2answers
927 views
PHP Traversing Function to turn single array into nested array with children - based on parent id
I have an array similar to this:
Array
(
Array
(
[ID] => 1
[parentcat_ID] => 0
),
Array
(
[ID] => 2
[parentcat_ID] => 0
),
...
2
votes
4answers
1k views
C# Large Tree Iteration
I have a large result set assembled in a parent/child relationship. I need to walk the tree and display the results to the user.
I've done this before using recursion, but because my result set ...
2
votes
3answers
641 views
Numbering Regex Submatches
Is there a canonical ordering of submatch expressions in a regular
expression?
For example: What is the order of the submatches in
"(([0-9]{3}).([0-9]{3}).([0-9]{3}).([0-9]{3}))\s+([A-Z]+)" ?
a. ...
1
vote
1answer
114 views
level-order, tree traversal - How to keep track of the level?
How to keep track of the level while traversing a binary tree in level order or breadth-first order?
The nodes in the binary tree have left and right references only.
I want to be able to ...
1
vote
1answer
186 views
Python: Maximum recursion depth exceeded
I have the following recursion code, at each node I call sql query to get the nodes belong to the parent node.
here is the error:
Exception RuntimeError: 'maximum recursion depth exceeded' in ...
1
vote
1answer
123 views
EXCEL - Look up a value in a list and return multiple corresponding values
I am trying to create a Tree Traversal in Excel for a schedule I have. I am at the point where I have 2 lists each 1006 cells long. The first is predecessors, the second is successors. I am trying to ...
1
vote
3answers
154 views
Traversing an html nested list using javascript
I have an HTML list (<ul>, <li>, etc.) of pages, with multiple items at various depths. I am trying to write some code to traverse this list one element at a time. So a "next " button ...
1
vote
1answer
59 views
best way to jQuery tree traversal?
I got the following code:
<table border=1>
<tbody>
<tr>
<td>issue</td>
<td><a class="issueDrawer" href="#">view</a></td>
...
1
vote
3answers
648 views
Traversing a n-ary tree without using recurrsion
How can I traverse an n-ary tree without using recursion?
Recursive way:
traverse(Node node)
{
if(node == null)
return;
for(Node child : node.getChilds()) {
traverse(child);
...
1
vote
2answers
485 views
Binary Search Tree PostOrder and PreOrder Traversals are wrong
I'm working on this homework where I need to print my binary search tree in preorder, postorder, and inorder. However, it seems like only my inorder method is working. I have used the following test ...
1
vote
4answers
394 views
Get path from every leaf node to root in a tree structure
How can I turn this tree structure
[1, [2, [3, 4]], [5, [6, [7], 8]]]
1
2
3
4
5
6
7
8
.... into this "reversed tree" structure, which basically contains the ...
1
vote
2answers
155 views
Graph iteration from bottom to top algorithm?
Given this dependency graph: What's a "good" approach to iterate through it from bottom to top?
My expected results for each "cycle" are:
Iteration step "1": Project B, Project D, Project Z, ...
1
vote
1answer
170 views
Fastest way to traverse arbitary depth tree for deletion?
For my own exercises I'm writing an XML-parser. To fill the tree I use a normal std::stack and push the current node on top after making it a child of the last top-node (should be depth-first?). So I ...
1
vote
1answer
95 views
Traversals through Tree.. In order problem with memory access violation
So I wrote up this little peace of code as practice for myself...
But i am getting in travers_inorder function at line *traverse_inorder(p->left)* memory access violation and program crashes.
Why???
...
1
vote
2answers
217 views
Access SimpleXMLElement properties without looping
I've tried both the SimpleXMLElement XPath approach as well as the DOMDocument XPath approach, but cannot seem to get things straight either way, but at least with the SimpleXMLElement route, I could ...
1
vote
2answers
202 views
Post order traversal of a formula
In data structures, I get converting in order and pre-order formula conversions into trees. However, I'm not so good with post-order.
For the given formula x y z + a b - c * / -
I came up with
...
1
vote
4answers
511 views
Finding border of a binary tree
We are given a binary search tree; we need to find out its border.
So, if the binary tree is
10
/ \
50 150
/ \ / \
25 75 200 20
...
1
vote
0answers
157 views
Tree traversal with page property sortIndex
I'm building a tree structure based on a list retrieved from a db.Model called Pages.
Each Page entry has a parentKey property that's a db.SelfReferenceProperty() and a db.IntegerProperty() called ...
1
vote
2answers
836 views
Constructively manipulating any value/object within a JSON tree of unknown depth
I have a JSON tree that contains nodes and children - the format is:
jsonObject =
{
id:nodeid_1,
children: [
{
id:nodeid_2,
children:[]
},
{
id:nodeid_3,
children:[
{
...