The process of visiting each node in a tree based on certain criterion.
4
votes
3answers
108 views
Algorithm traversal throughout a tree structure
Class Diagnostic {
//Get the size in bytes of an object
static long sizeOf(Object object);
//Get the references for an object (leafs)
static List<Object> getRefs(Object object);
//Implement ...
0
votes
2answers
33 views
Preorder traversal visualization of binary tree
I've decided to take the code from http://rosettacode.org/wiki/Tree_traversal#C.2B.2B and visualize it using SDL. The ASCII graphic on the page looks like:
1
/ \
/ \
/ ...
0
votes
3answers
33 views
Build a Tree Out of File Path, Is My Logic Correct?
I am trying to build a tree and I would like to link parent nodes to children based on a filepath like structure such as the one below, where The World is the root:
The World
The World/Asia
...
-1
votes
1answer
47 views
Interactive/Visual Tutorial about Data Structures [Binary Trees]
I've spent hours searching this on youtube. Maybe you could recommend me something.
I am searching some interactive/visual (could be a video) tutorial about Binary Trees at first.
It could be ...
1
vote
3answers
65 views
Searching a tree in c++(not binary)
I asked a similar question before, but now I'm looking for a why this isn't working instead of "help me fix".
I have to create a general tree that looks like this:
1
...
0
votes
1answer
26 views
return current node from BST
Hello I've run into an issues I cannot seem to resolve. I have a BST that I am traversing through and checking ranks. I have a method checkRank(link head, targRank) that takes in the head node and ...
2
votes
1answer
94 views
Finding visible node in binary tree
A binary tree T is given. A node of that tree containing value V is described as visible if the path from the root of the tree to that node does not contain a node with any value exceeding V. In ...
0
votes
1answer
41 views
construct and print elements of a Binary Tree (unbalanced binary tree), from left to right, and from bottom-up
please let me know how to achieve the following:
I have a binary tree, which is unbalanced, having both the left & right sub trees. I have to print the values of nodes of that unbalanced binary ...
1
vote
0answers
28 views
ANTLR3 Kleene star and tree traversal
I'm an experienced yacc/bison abuser. I'm used to building my own trees and then traversing them. So, now, switching to ANTLR3 (why 3? Because 4 doesn't support Python, that's why!)... I have the ...
0
votes
1answer
50 views
Traversing directory without recursion in iOS
I need to traverse all the files in the folder structure of the directory accessed by the app from shared servers. With the inclusion static libraries I'm able to access various servers and the files ...
-1
votes
2answers
304 views
Depth First Search of Binary Search Tree using Stack in C++ [closed]
I am trying to do dfs in a binary search tree using stack but its giving an error please help.
#include<iostream>
using namespace std;
class TreeNode{
private:
int data;
...
0
votes
1answer
319 views
Create binary tree from inorder and post order traversal
I was trying to familarize with the question of creating a tree given inorder and postorder traversal. I wrote the following code, but some thing is going wrong which i was unable to find out. Can ...
0
votes
0answers
64 views
Create a map of characters and their associated bitstrings from a huffman tree
I have coded the tree and now I am trying to traverse the tree and create a bitstring for each character and put these values into a map.
Here is my code so far:
map<char, string> ...
-1
votes
1answer
234 views
Inorder Traversal of a tree [closed]
How can I Flatten a tree (inorder traversal) for following Tree structure: https://gist.github.com/damadamdam/7b6364220b11871f2930
My expected answer is also attached with the gist.
0
votes
6answers
75 views
How do find the attribute of the closest element using jQuery?
I have the following markup:
<div class="span6">
<form>
<fieldset>
<label>Name:</label>
<input ...
1
vote
2answers
995 views
Traversing through all nodes of a binary tree in Java
Let's say I have a simple binary tree node class, like so:
public class BinaryTreeNode {
public String identifier = "";
public BinaryTreeNode parent = null;
public BinaryTreeNode left = ...
4
votes
1answer
123 views
Boost.Filesystem-like Library for D
Has anybody written a D library similar to Boost.Filesystem providing iterators/ranges that can do for example file system directory tree traversal?
1
vote
1answer
50 views
Reconstructing tree given only in-order traversal
Is it possible to reconstruct a tree given only the in-order traversal if the tree has, any empty children filled with an asterisk? (but is not necessarily balanced)
A
/ \
B F
...
2
votes
1answer
80 views
traversing in a tree
I'm working on a TreeDecomposition where each node in a tree can have more than one vertices from the graph. Now, i'm trying to find the first node which contains a vertex u from the root of tree.
...
0
votes
1answer
73 views
Ruby on Rails: Traverse Json Structure
def self.directory_hash(path, name=nil)
data = {:parent => (name || path)}
data[:children] = children = []
Dir.foreach(path) do |entry|
next if (entry == '..' || entry == '.')
...
2
votes
1answer
75 views
What type of traversal should be used to find the sum of a binary tree?
The following question appeared on a test my instructor gave a couple of years ago. He provided an answer, but did not provide a satisfactory explanation. I have googled this topic, but I didn't ...
1
vote
2answers
106 views
Recursive Tree Traversal, returning a variable for each leaf of the tree
I have a huffman binary tree. I need to traverse down the tree till I get to each leaf, and for each leaf, I need to "save" a member of that leaf node, and keep all those variables in an array outside ...
0
votes
0answers
153 views
Displaying value by value in a threaded binary tree using a “Next” button with a recursive inorder traversal
As the title states, having a bit of trouble mostly with the algorithm. I have the algorithm down to parse through and print ALL the values, but I need to be able to stop on each value and display it ...
0
votes
2answers
64 views
Finding up to nth level of pathways in an undirected graph?
I have created an undirected graph with 6 vertices, visually represented like this: http://i.imgur.com/EtQyspG.png
I would like to write a script that can find all paths from a starting point without ...
0
votes
3answers
164 views
Traversal to print two BSTs ordered using recursion. Use of extra memory like arrays is not allowed
I was asked this question in an interview. Given are two BST (Binary Search Tree). We need to traverse the two trees in such a way that a merged sorted output is the result. Constraint is that we ...
3
votes
2answers
99 views
set consolidation for merging and flattening a tree structure
I've got a set of data like this:
data = { 1: {"root": [2],
"leaf": [10, 11, 12],
},
2: {"root": [1,3],
"leaf": [13, 14, 15],
},
...
0
votes
0answers
42 views
BST [homework] how does this method of iterative traversal work?
I'm using an example from a free book Open Data Structures (in Java) by Pat Morin. I believe i understand the concept of what is going on for tree traversal (keep going left until you can't go any ...
1
vote
2answers
495 views
Steepest Ascent Hill Climbing vs Best First Search
I am trying to solve a problem using different algorithms and Steepest Ascent Hill Climbing (SAHC) and Best First Search are two of these algorithms that I need to implement.
According to Wikipedia:
...
0
votes
2answers
144 views
Performance of Morris Traversal vs recursive In-Order in a binary tree
I am doing some preparations before going to interviews and i just learned about Morris Traversal.
This is Morris Traversal code which i wrote in Java(its working):
protected void morrisTraversal(){
...
0
votes
3answers
82 views
how can get a tree with only one tree traversal?
consider I want to transfer a binary tree in a serialised way and I have only one string to pass that tree and I can use the help of only one traversal, is there any way I could do that?? - (was ...
0
votes
0answers
39 views
Pruning a tree and cloning the nodes as we traverse it. Is this a class of tree algorithm?
I am attempting to traverse a tree (in this case the html DOM), apply a pruning test at each node, and cloning the nodes that pass the test as I traverse the tree. My goal is to keep the original tree ...
1
vote
1answer
42 views
Clicking on a parent element
I'm having lots of trouble with elrte.min.js. If I have a page like:
<div id="#main">
<div class="el-rte">
<ul><li id="thisistheelement"></li></ul>
</div>
...
0
votes
2answers
221 views
Build unordered list from multidimensional array without recursion
I have a problem building an unordered list from multidimensional array containing entities and their children. The problem is I do not want to use recursion as the tree could get very deep and ...
1
vote
2answers
169 views
checking subtrees using preorder and inorder strings
A book I'm reading claims that one way to check whether a binary tree B is a subtree of a binary tree A is to build the inorder and preorder strings (strings that represent the inorder and preorder ...
0
votes
2answers
147 views
What is the minimum cost to traverse a binary Tree
I want to traverse a Binary Tree with minimum cost, where cost of each edge is 1.
Traversal is complete when each node of the tree is visited.
For instance, the minimum cost of the traversal of ...
1
vote
2answers
212 views
Time complexity of level order traversal
What is the time complexity of binary tree level order traversal ? Is it O(n) or O(log n)?
void levelorder(Node *n)
{ queue < Node * >q;
q.enqueue(n);
while(!q.empty())
{
...
1
vote
1answer
54 views
How to store a stack or long array in database?
I am implementing a depth first tree traversal code a large tree. It's single traversal process can span several days because of the long processing time at each node and in between the system might ...
0
votes
2answers
433 views
How to draw a Binary Tree then traverse it
I am a little confused about how to draw a binary tree using Pre-Order Traversal, the root would be the first number going from left to right? So if I have 48 32 51 54 31 24 39, then 48 would be the ...
3
votes
2answers
310 views
SQL tree traversal down to the root and back up one
I have the following table (ObjectStates) and want to get the root as well as the first-child of the root:
ID Title ParentID
1 Draft null
2 Green null
3 Red null
4 ...
3
votes
1answer
84 views
Postorder traversal of nested dom elements selected by jQuery
This should be a nice little puzzle, and hopefully solvable by jQuery. Here is a self explanatory jsFiddle. Note that I am looking for a generic solution to traverse the elements of interest in the ...
0
votes
2answers
80 views
twalk without globals
I am trying to traverse a binary tree using twalk() with <search.h>
#define _GNU_SOURCE /* Expose declaration of tdestroy() */
#include <search.h>
#include <stdlib.h>
...
0
votes
1answer
256 views
beautiful soup get children that are Tags (not Navigable Strings) from a Tag
Beautiful soup documentation provides attributes .contents and .children to access the children of a given tag (a list and an iterable respectively), and includes both Navigable Strings and Tags. I ...
0
votes
2answers
132 views
Printing a tree with an odd traversal pattern [closed]
I'm trying to figure out how to print a tree with the following pattern:
An example of the traversal I need can be seen in this Google Docs slide-show:
Google Docs Presentation
let "n" = number of ...
1
vote
2answers
54 views
Ruby: Yielding from a method that takes arguments?
I've written a very simple, recursive, tree-traversal method in ruby. I want to yield the results of this traversal so that I can easily iterate through the nodes of the tree.
def ...
0
votes
1answer
48 views
What is the algorithm for serializing the DOM to an XML text file?
E.g.
tree:
A
A1 A2
serialize to an xml:
<A> <A1> </A1> <A2> </A2> </A>
It seems either root-first traversal (preorder) or root-last traversal ...
0
votes
1answer
88 views
seg fault in BFS traversal of BST
I have implemented a binary tree and its BFS traversal. The program is below:
struct elemq{
int ele;
struct elemq *left;
struct elemq *right;
};
struct que{
struct elemq *ss;
...
1
vote
1answer
261 views
Traversing a generic Trie in Java
I have a fully built generic Trie in java. I am trying to traverse through the Trie to obtain all the complete combinations for each path. For example, if the Trie contained chars then it would return ...
0
votes
2answers
251 views
How do I traverse a scene graph-like tree structure?
I have a scene graph where I have:
class Node
{
public:
struct
{
COLLISION_TYPE collisionType;
void* boundingVolume;
}collisionData;
struct
{
XMFLOAT3 position;
XMFLOAT3 rotation;
...
1
vote
0answers
611 views
Get postorder BT traversal from given inorder and preorder traversal
Can anyone help me out to get postorder traversal as output from gven two traversals:
In-order :A, B, C, D, E, F, G, H, J, K, L, M, P, Q, N.
Pre-order : C, D, E, B, G, H, F, K, L, P, Q, M, ...
2
votes
1answer
74 views
jquery :not selector not working in next() method
what is the next best thing to use when you want to select the next li item, but not the one that has someClassName. The not selector returns an empty array!
or is this a case off using filter?
...




