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)

34
votes
24answers
38k views

Find kth smallest element in a binary search tree in Optimum way

I need to find the kth smallest element in the binary search tree without using any static/global variable. How to achieve it efficiently? The solution that I have in my mind is doing the operation in ...
53
votes
13answers
52k views

How to find the lowest common ancestor of two nodes in any binary tree?

The Binary Tree here is may not necessarily be a Binary Search Tree. The structure could be taken as - struct node { int data; struct node *left; struct node *right; }; The maximum ...
53
votes
14answers
41k views

What are the applications of binary trees?

I am wondering what the particular applications of binary trees are. Could you give some real examples? Thanks.
24
votes
6answers
27k 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.
7
votes
9answers
5k views

Iterating over a Binary Tree with O(1) Auxiliary Space

Is it possible to iterate over a binary tree in O(1) auxiliary space (w/o using a stack, queue, etc.), or has this been proven impossible? If it is possible, how can it be done? Edit: The responses ...
63
votes
7answers
20k views

Skip List vs. Binary Tree

I recently came across the data structure known as a Skip list. They seem to have very similar behavior to a binary search tree... my question is - why would you ever want to use a skip list over a ...
35
votes
2answers
9k 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. ...
16
votes
10answers
12k views

C How to “draw” a Binary Tree to the console

I'm looking for an algorithm (not a library) I could use to "draw" a binary tree (the tree itself is implemented in C) to the console, so for example a bst with numbers: 2 3 4 5 8 would be shown in ...
13
votes
3answers
6k views

The possible number of binary search trees that can be created with N keys is given by the Nth catalan number. Why?

This has been bothering me for a while. I know that given N keys to arrange in the form of a binary search tree, the possible number of trees that can be created correspond to the Nth number from the ...
40
votes
10answers
40k views

Binary Trees vs. Linked Lists vs. Hash Tables

I'm building a symbol table for a project I'm working on. I was wondering what peoples opinions are on the advantages and disadvantages of the various methods available for storing + creating a symbol ...
30
votes
12answers
6k views

Red-Black Trees

I've seen binary trees and binary searching mentioned in several books I've read lately, but as I'm still at the beginning of my studies in Computer Science, I've yet to take a class that's really ...
11
votes
5answers
10k views

Determine if two binary trees are equal

What would be the efficient algorithm to find if two given binary trees are equal - in structure and content?
37
votes
9answers
16k views

B-tree faster than AVL or RedBlack-Tree? [closed]

I know that performance never is black and white, often one implementation is faster in case X and slower in case Y, etc. but in general - are B-trees faster then AVL or RedBlack-Trees? They are ...
7
votes
7answers
19k views

With ' N ' no of nodes, how many different Binary and Binary Search Trees possible?

For Binary tree: You no need to consider tree node values, I am interested about different tree topologies with 'N' nodes. For Binary Search Tree: We obviously consider tree node values.
2
votes
1answer
966 views

What is the left-child, right-sibling representation of a tree? Why would you use it?

Many data structures store multi-way trees as binary trees using a representation called the "left-child, right-sibling" representation. What does this mean? Why would you use it?
4
votes
2answers
359 views

Optimal High-Density Binary Space Partition for Grids

I'm writing a game in which a character moves around on a randomly generated map in real time (as it's revealed.) This leads me an interesting data structures problem. The map is generated as it comes ...
1
vote
3answers
625 views

Generic data structure libraries for C?

Which libraries do you guys use for generic data structures like linked list, binary tree etc.? What are the most common, efficient libraries? Can you name some?
0
votes
3answers
294 views

Given a binary search tree and a number, find a path whose node's data added to be the given number.

Given a binary search tree and a number, find if there is a path from root to a leaf such that all numbers on the path added up to be the given number. I know how to do it by recursively. But, I ...
20
votes
7answers
50k views

The best way to calculate the height in a binary search tree? (balancing an AVL-tree)

I'm looking for the best way to calculate a nodes balance in an AVL-tree. I thought I had it working, but after some heavy inserting/updating I can see that it's not working correct (at all). This ...
21
votes
12answers
6k views

Why use binary search if there's ternary search?

I recently heard about ternary search in which we divide an array into 3 parts and compare. Here there will be two comparisons but it reduces the array to n/3. Why don't people use this much?
4
votes
8answers
6k views

Find whether a tree is a subtree of other

There are two binary trees T1 and T2 which store character data, duplicates allowed. How can I find whether T2 is a subtree of T1 ? . T1 has millions of nodes and T2 has hundreds of nodes.
11
votes
8answers
21k views

Balancing a Binary Tree (AVL)

Ok, this is another one in the theory realm for the CS guys around. In the 90's I did fairly well in implementing BST's. The only thing I could never get my head around was the intricacy of the ...
5
votes
4answers
11k views

How would you print out the data in a binary tree, level by level, starting at the top?

This is an interview question I think of a solution. It uses queue. public Void BFS() { Queue q = new Queue(); q.Enqueue(root); Console.WriteLine(root.Value); while ...
14
votes
4answers
3k views

Convert a maximum heap to a binary search tree

We are given an array of 2m - 1 distinct, comparable elements, indexed starting from 1. We can view the array as a complete binary tree: Node is placed at index i. Left child is placed at 2i. Right ...
15
votes
7answers
4k views

Is there a built in Binary Search Tree in .NET 4.0?

Is there a built in binary search tree in .NET 4.0, or do I need to build this abstract data type from scratch?
7
votes
2answers
903 views

printing all binary trees from inorder traversal

Came across this question in an interview. Given inorder traversal of a binary tree. Print all the possible binary trees from it. Initial thought: If say we have only 2 elements in the array. Say ...
9
votes
5answers
8k views

How to Serialize Binary Tree

I went to an interview today where I was asked to serialize a binary tree. I implemented an array-based approach where the children of node i (numbering in level-order traversal) were at the 2*i index ...
6
votes
5answers
3k views

What is the fastest way to change a key of an element inside std::map

I understand the reasons why one can't just do this (rebalancing and stuff): iterator i = m.find(33); if (i != m.end()) i->first = 22; But so far the only way (I know about) to change the key is ...
6
votes
3answers
5k views

Building a balanced binary search tree

Is there a method to build a balanced binary search tree? Example: 1 2 3 4 5 6 7 8 9 5 / \ 3 etc / \ 2 4 / 1 I'm thinking there is a method to do this, without ...
4
votes
5answers
6k views

How to traverse a binary tree in O(n) time without extra memory

Given a binary tree with an integer, Left & Right pointers, how can one traverse the tree in O(n) time and O(1) extra memory (no stack/queue/recursion)? This guy gave a solution which is not O(n) ...
1
vote
2answers
5k views

PHP Binary Tree Recursion Algorithm

I'm working on my first-ever recursive problem and I'm stuck. First off, I don't believe the function I wrote is actually correct, and I'm sitting in a hospital so there's no access to PHP to actually ...
2
votes
3answers
163 views

Micro optimisations iterating through a tree in C#

I'm working on a massive number crunching project. I've been optimising everything since the start as I knew it would be important. Doing performance analysis my code spends almost 40% of it's life in ...
2
votes
1answer
526 views

first common ancestor of a binary tree

I have a doubt that if i have a binary search tree like this then what will be lowest common ancestor of nodes 6 and 1. Thanks
2
votes
5answers
6k views

Binary Tree Height

I need a general formula to calculate the minimum height of the binary tree and the maximum height of the binary tree. (not the binary search tree)
1
vote
2answers
1k views

Java Algorithm for finding the largest set of independent nodes in a binary tree

By independent nodes, I mean that the returned set can not contain nodes that are in immediate relations, parent and child cannot both be included. I tried to use Google, with no success. I don't ...
0
votes
4answers
652 views

Creating a binary search tree in C99

I've got a programming class assignment due tonight at 8 PM CDT that I'm having trouble with. We are to take a list of the following numbers via reading a file: 9 30 20 40 35 22 48 36 37 38 ...
2
votes
3answers
5k views

Binary tree from Preorder and inorder traversal

How can I get the tree form these pre/in order traversal: Pre: A,B,D,E,C,F,G,H in:E,D,B,A,G,F,H,C EDITED: MY Answer A / \ B C / \ D F / / \ E G ...
1
vote
2answers
1k views

How to find height of BST iteratively?

public void HeightIterative() { int counter = 0; int counter2 = 0; TreeNode current=root; if(current != null) { while(current.LeftNode!=null) ...
1
vote
4answers
5k views

How to add add node in binary tree

(5)Root (3)-------^--------(7) (2)---^----(5) ^-----(8) i want to add node with data 5 in this binary Search tree....Please help.....i am really stuck ...
0
votes
1answer
86 views

temporary pointer point to a using vector address

I have a question about parsing the string s into a binary tree. struct TreeNode { string val; // The data in this node. TreeNode *left; // Pointer to the left subtree. TreeNode *right; ...
0
votes
2answers
189 views

Intersection of 2 binary trees throws Stack Overflow error

I am trying to intersect two binary trees, and create a new binary tree with the nodes that are the same, but the following creates a stackOverflow error. Can anyone help me? private ...
0
votes
2answers
1k views

How to create a linked list of nodes that are contained in the max-Depth of a Binary Tree using Java

I've already created the Binary Tree and Linked list classes, I'm just in need of an algorithm that prints ONLY the nodes of the largest path. The height and size of the Binary Tree are already stored ...
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 ...
15
votes
19answers
22k views

What is validating a binary search tree?

I read on here of an exercise in interviews known as validating a binary search tree. How exactly does this work? What would one be looking for in validating a binary search tree? I have written a ...
8
votes
17answers
9k views

Real world examples of tree structures

I'm looking for some examples of tree structures that are used in commercial/free software projects, modern or old. I can see examples on wikipedia, but I am looking for more concrete examples and how ...
18
votes
4answers
2k views

What data structure using O(n) storage with O(log n) query time should I use for Range Minimum Queries?

I'm stumped by the following homework question for an algorithms class: Suppose that we are given a sequence of n values x1, x2 ... xn, and seek to quickly answer repeated queries of the ...
12
votes
3answers
2k views

How to find largest common sub-tree in the given two binary search trees?

Two BSTs (Binary Search Trees) are given. How to find largest common sub-tree in the given two binary trees? EDIT 1: Here is what I have thought: Let, r1 = current node of 1st tree r2 = current ...
12
votes
11answers
28k 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 ...
15
votes
6answers
2k views

Skip Lists — ever used them?

I'm wondering whether anyone here has ever used a skip list. It looks to have roughly the same advantages as a balanced binary tree, but is simpler to implement. If you have, did you write your own, ...
11
votes
6answers
3k views

For a given binary tree find maximum binary search sub-tree

For a given binary tree, largest binary search sub-tree should be found. Example: Input: 10 / \ 50 150 / \ / ...

1 2 3 4