A binary tree is a tree data structure in which each node has at most two child nodes, left and right. Nodes with children are parent nodes and the node without a parent is the root node.

learn more… | top users | synonyms (1)

1
vote
2answers
243 views

Building a Tree from XML File using RapidXML and c++

For a project for my c++ class, I am supposed to parse and xml file and build a binary tree from it. The file is much more dense than this but the layout is as follows: <?xml version="1.0" ...
0
votes
1answer
51 views

python and fast lookups of a tree where nodes have multiple attrubutes and values

I need a tree object in python that is very fast. Speed of the lookup is more important than memory. The leaf node is the value that I want. So, if given state=NY, postion=3, hourOfDay=2 and ...
0
votes
1answer
301 views

Delete in Binary search tree in C

I have implemented BST in C. Insert and lookup works fine. But delete has issues when deleting the root node. I'm not able to free the pointer to the root node. I could if I pass it as a double ...
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 ...
0
votes
1answer
176 views

Printing a binary tree using InOrder traversal without ambiguity

I am trying to print out a binary tree using in-order traversal (in java), but without any ambiguity. I created the tree from a post-order notation input. For example, input = 2 3 4 * - 5 + I then ...
2
votes
4answers
176 views

Binary tree stack overflow

I have made a binary tree based on Alex Allain's example found here. It throws a stack overflow exception after adding about 5000-6000 elements to it. Any idea of how to prevent a stack overflow? The ...
0
votes
2answers
389 views

Binary trees, returning the next node in a preorder traversal

I have an assignment and I need some help with a method. So I have a tree like this: A / \ B C / \ / \ D E F G ...
0
votes
1answer
79 views

How to transform Modellica code to Ontologies (.owl)?

I working on a mechatronic project and i use dymola tool to generate modelica code for my model . now i want to transform modellica to .owl inorder to implement semantic search for the elements . I ...
0
votes
1answer
92 views

find path between root and multiple of 5

I am facing hard time to implement a program for finding the path to a node from b-tree root which is a multiple of 5. Example: 12 / \ 4 7 /\ /\ 5 3 4 10 Consider this as ...
0
votes
1answer
111 views

how to recursively visit all tree node

So, I got a tree like this a / \ b c / \ / d e f the function have to print: ...
0
votes
0answers
232 views

Java binary search tree delete

Im writing a delete method for a binary search tree, it isnt complete but i filled a tree so that i could at least test the case where the node iw ant to delete is a leaf but it doesnt seem to be ...
2
votes
1answer
97 views

Adjust Range Search of BinaryTree to get the Outer Elements

I have a RedBlack [Balanced, sorted] Binary Tree and I am searching it to find all the values within the range [lower, upper]. public IEnumerable<TData> Range( BinaryTree<TData> ...
1
vote
2answers
150 views

Finding left most node in a binary tree

I need to find the left most node in a binary tree. It may sound naive but it isnt. I tried this but i think it will fail : Node* findLeftMostNode(Node* root){ if(root->left==null) ...
0
votes
0answers
87 views

Finding Lowest Common Ancestor in a binary tree

I am looking for a way to find lowest common ancestor in a binary tree. Note : It is binary tree not binary search tree and we don't have any parent pointer. Moreover if we are trying to find a LCA ...
1
vote
1answer
175 views

Binary Representation of N-ary Tree

I am currently trying to make a tree structure with Nodes having an unknown amount of children but I also have to keep track of parent Nodes. I looked at this question N-ary trees in C and made a ...
1
vote
0answers
127 views

Binary tree of doubles/comparison of doubles C++

I'm trying to implement a binary tree with doubles, but I believe my doubles comparison is not correct. When I feed it ints it works properly; however, if I insert doubles with many trailing decimal ...
0
votes
1answer
93 views

How to : Generic Binary Min Heap comparing members objects

I'm creating a simple Binary min heap. It's clear to me how Binary heaps work and implementing them is not a problem. However I'm having trouble on how to implement a generic Binary heap ( a min heap ...
0
votes
1answer
141 views

How to find the height of the left and right subtree in C#

How to find the subtree height both left and right, I have used this code in the following link C# BST Any help would be appreciated. Kind Regards
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
1answer
65 views

Re-declaring struct

I'm trying to avoid globals using twalk() in search.h As you can see twalk callback a function but fails to include a void * param /* Walk the nodes of a tree */ void twalk(const void *vroot, void ...
1
vote
3answers
250 views

How do I get the root of a binary tree without having parent links in a tree node?

I have as an assignment to do the following: Write, document (internally) and test a Java program to solve the following problem: Implement the binary tree ADT using a linked representation ...
-1
votes
1answer
138 views

C# single threaded asynchronous processing mechanism [closed]

I am new to programming and was asked a question in a test, although I failed the test. I wanted to find out the answer and proceed with more learning. The question is: A single-threaded application ...
1
vote
0answers
118 views

C - Binary tree of threads

I'm using the array implementation for simulating a binary tree of threads. Here's some of my code: void *genThreads(threadData *b) { if (final level is reached) { // print something ...
0
votes
0answers
154 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
1answer
62 views

Binary Tree Node - GCC Warning - Incompatible Types

I'm trying to create a new node for a binary tree, and I'm getting errors when I try to make an assignment to ->left and ->right. typedef struct bin_node_t { data_t data; bst_key_t key; ...
-2
votes
1answer
81 views

Write Method Output to a File - JAVA [closed]

I'm wondering how you would write the output of a method to a text file. The method in question takes an AVL Binary Search Tree as a parameter, and returns all of its contents with indenting, ...
3
votes
1answer
331 views

non-recursive method for evaluating a binary tree representing an arithmetic expression

As the subject states, I need to describe a method for evaluating a binary arithmetic expression tree without using recursion. No other details or instructions are given to me. As far as my ...
0
votes
1answer
149 views

Genarating decision tree on CUDA

I want to generate some decision tree on CUDA, below we have pseudo-code (the code is very primitive, it's only for understand what I wrote): class Node { public : Node* father; Node** sons; ...
0
votes
0answers
111 views

How to reduce heap memory usage when create large binary tree

I'm creating a very large binary tree recursively with c#. It has more than millions of nodes. I've allocate 224MB Stack memory(0xE000000) for the CreateBinTree Thread usage. Most nodes' right child ...
-1
votes
2answers
75 views

How can I store the values of nodes of a binary search tree in a string?

I am trying to store all values of the nodes in a binary search tree in ascending order in a string. I managed to print them out but storing them in a string seems a little more complicated Any ideas? ...
1
vote
1answer
280 views

Applications of preorder, postorder traversals of a Binary Tree?

Are there any specific applications of preorder and postorder traversals of a Binary Tree ? PS: Application of Inorder Traversal : It is used to print the sorted numbers from a BST.
0
votes
2answers
184 views

Binary tree insertion sort in C

Hey can anyone explain how to sort a binary tree using insertion sort in C language where time complexity is an issue. I am just learning to code. Thank you guys!
0
votes
2answers
340 views

Height of binary search tree iteratively

I was trying out an iterative method to find the height/depth of a binary search tree. Basically, I tried using Breadth First Search to calculate the depth, by using a Queue to store the tree nodes ...
0
votes
0answers
60 views

Implementing Multi Way search trees In java

I just learnt how to implement a binary tree and search for data in a simple ordered structure. Now i wish to implement a multi-way search tree where I can search for items(e.g strings). What is the ...
0
votes
1answer
39 views

Representing Rooted Tree in terms of class

I am facing difficulty in understanding the following paragraph taken from Representing Rooted Trees. It basically shows two methods for representing trees. G & T is somewhat clear to me, but the ...
0
votes
2answers
142 views

How to find and return bottom-most node of a binary tree? binary search tree?

I have a binary tree with the only condition that there is a single node in the deepest level. The nodes in the tree have the parent property (as well as left, right, data) Is it possible to ...
1
vote
1answer
66 views

Why is this method to calculate the size of a binary tree not working?

ok these binary trees kinda drive me crazy now. I made a method to get the number of nodes in a tree but the result not correct. There is always one node missing. Any ideas? Help would be appreciated ...
0
votes
1answer
47 views

Why is this method to calculate the sum of a binary tree not working?

I know that this code should work but it does not. Does anyone know what i am missing? I am trying to get the sum of all nodes in a binary tree. public int getSum() { if (this == null) { ...
0
votes
1answer
62 views

BinaryTree functions - complexity

i am just writing down different function, which are operation what can be done on a binary tree. I am wondering what is the running time of this function, trying to get rid with them: ...
0
votes
3answers
151 views

Find the diameter of a binary tree

I am trying to find the diameter of a binary tree (Path length between any two nodes in the tree containing maximum number of nodes.) in java. my code snippet: public int diametre(Node node, int d) ...
0
votes
2answers
320 views

print all root to leaf paths in a binary tree

i am trying to print all root to leaf paths in a binary tree using java. public void printAllRootToLeafPaths(Node node,ArrayList path) { if(node==null) { return; } ...
-1
votes
2answers
74 views

binary search tree node always NULL

I know this may seem simple, but I have been scratching my head for the last few hours trying to figure out why whatever I do, thisNode is always NULL. Because this is null, it means that nothing ...
-1
votes
1answer
82 views

Binary Search Tree in Java - From python [closed]

Alright, so I'm working on an assignment that requires us to implement a binary search tree in a language of our choice. I just need help translating a class definition in Python to its equivalent in ...
1
vote
3answers
249 views

C binary search tree implementation - insert

I am trying to create a program which which takes a list of words as an input, and sorts them into a binary tree, in order to allow them to be found, e.g. like a dictionary. This is what I have done ...
0
votes
0answers
143 views

Binary tree Balanced - Pseudocode

i am studying the binary tree properties and i encountered such a task to solve by myself. we know that a binary tree is balanced when: The number of inner nodes in the left subtree and the number ...
0
votes
2answers
83 views

Binary tree implementation

I seem to be getting a segmentation fault, and it seems as though the error is coming from the call to tra, but I am unable to see exactly what is wrong with the code that I have written. Really have ...
4
votes
2answers
295 views

Binary Tree : Advantages of pre-order ,post-order traversals in Binary Tree?

Inorder traversal of a Binary Search Tree yields nodes in increasing order. But what advantages do pre order and post order traversals have on any binary tree? EDIT:What I mean by advantages is : ...
3
votes
4answers
179 views

Is SortedDictionary a red-black tree?

I saw several quotes about this on the Internet but no official documentation? Can anyone tell me where I can get information about this?
4
votes
3answers
351 views

Binary Tree : Non recursive routine to print ancestor of a node in a Binary Tree?

I have to write a non recursive program to print the ancestor (parent of parent) of a given node in a Binary Tree. What logic should I use ?
1
vote
1answer
183 views

Binary tree properties - Balanced

i am trying to understand the binary tree properties. But i am not sure about one thing: The def. of a Binary trees states that: A binary tree is balanced if for each node it holds that the number ...

1 2 3 4 5 28