0
votes
2answers
35 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 / \ / \ / ...
-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 ...
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 ...
0
votes
1answer
328 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 ...
1
vote
2answers
1k 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 = ...
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
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 ...
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
146 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 ...
1
vote
2answers
171 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
435 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 ...
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
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
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, ...
0
votes
2answers
187 views

C++ freezes on testing whether a member variable equals NULL

I created a program which, so far, creates a binary tree of nodes for a Huffman coding program. For some reason, when the debugger gets to the point where it tests if the two children equal Null or ...
0
votes
2answers
1k views

Need to find Time and Space complexity of my algorithm

Somehow i have managed to write an algorithm for Constructing a binary tree from it's inorder and preorder traversal data. I am not sure how to compute time and space complexity of this algorithm. ...
-1
votes
1answer
178 views

Traversing a tree - How to print the edges first

If I have a tree as below: A Root Level / \ / \ G Z Level 1 / \ / \ / \ / \ C D T J Level ...
0
votes
1answer
628 views

Iterative Threaded Binary Tree Traversing with only constant extra space

How to traverse a threaded binary tree non recursively in O(n) without using a stack (just allowed to use constant extra space for temp variables, so we can't add visit flag to each node in the tree). ...
0
votes
3answers
759 views

Queue for Binary Tree BFS

I was just trying out some code, not a experienced coder. I implemented(at least think) Level Order traversal and it sorta got done pretty easily. Want to know if its the right approach. ...
4
votes
1answer
1k views

Huffman Code encoding traversal

I am trying to do the encoding of a huffman tree. My tree is correct. I just need to figure out how to fix my recursive function to create the table properly. Thanks for any help I can receive. ...
1
vote
4answers
4k views

Tree traversal in Java

I am studying for a job interview and was reviewing trees, I have no problem when traversing them but I got to a question I haven't been able to figure the right answer to: Write a function that ...
2
votes
2answers
693 views

PreOrder and PostOrder traversal by modifying morris traversal

The morris traversal works great for InOrder traversal with O(n) time and O(1) space. Is it possible to just by changing a few things achieve PreOrder and PostOrder traversal using the same algorithm. ...
1
vote
2answers
2k 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 ...
0
votes
2answers
120 views

Skip nodes during binary tree traversal

I need to traverse a binary tree, skipping the children of any node for which a condition is met. This implements a tree-guided clustering approach; the leaves of a subtree are considered a cluster ...
0
votes
1answer
659 views

Tree Traversal to swap two nodes

I just came across this problem and was wondering if I could come up with a right solution. The problem involves in swapping two nodes of a binary tree not just by value but by node. So this means ...
0
votes
1answer
324 views

Edit the nodes in a binary tree in Java

Okay. I have a binary tree, and this is what I want to do with it: For each node in original tree: If it's not a leaf, replace it with a leaf node. Do a calculation on the original tree updated ...
3
votes
5answers
784 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
192 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
1answer
2k 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 ...
33
votes
2answers
8k views

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. ...
26
votes
7answers
12k 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 ...
1
vote
2answers
955 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 ...
0
votes
3answers
240 views

Binary Search Tree- breadthFirst function Call

I have the algorithm for void leveltraversal(ostream& out); but i am not sure how to call it in main () . In my Assignment we are not allowed to change the header file. Is there a way to call it ...
2
votes
4answers
1k 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 ...
0
votes
3answers
3k views

Level Order Traversal of a Binary Tree

void traverse(Node* root) { queue<Node*> q; Node* temp_node= root; while(temp_node) { cout<<temp_node->value<<endl; if(temp_node->left) ...
9
votes
3answers
3k 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 ...
1
vote
3answers
1k views

Bin Tree Post Order Traversal, No recursion, no node flag

Is there another way to do this? Just spent 2 hours trying to figure it out. I have a solution (see DumpPostOrder below) however, is there is a better or more efficient method? It feels like there may ...
10
votes
3answers
2k views

Postorder Traversal

In-order tree traversal obviously has application; getting the contents in order. Preorder traversal seems really useful for creating a copy of the tree. Is there a common use for postorder ...
0
votes
2answers
13k views

Java Binary Tree. Printing InOrder traversal

I am having some problems printing an inOrder traversal of my binary tree. Even after inserting many items into the tree it's only printing 3 items. public class BinaryTree { private TreeNode ...
0
votes
2answers
586 views

C++ design question on traversing binary trees

I have a binary tree T which I would like to copy to another tree. Suppose I have a visit method that gets evaluated at every node: struct visit { virtual void operator() (node* n)=0; }; and I ...
0
votes
6answers
1k views

Binary Tree Nodes - Which Way?

For an assignment we were given in Data Structures, we had to create a test class to determine whether the code we were given correctly traversed the binary trees in our test class. These are the 3 ...
11
votes
11answers
27k 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 ...