Tagged Questions
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.
31
votes
7answers
10k 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 ...
27
votes
14answers
14k 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.
23
votes
10answers
23k 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 ...
23
votes
11answers
3k 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 ...
21
votes
7answers
9k views
B-tree faster than AVL or RedBlack-Tree?
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 ...
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 ...
19
votes
16answers
18k 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 ...
18
votes
11answers
2k 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?
18
votes
10answers
18k views
How can I find the common ancestor of two nodes in a binary tree?
The Binary Tree here is not a Binary Search Tree. Its just a Binary Tree.
The structure could be taken as -
struct node {
int data;
struct node *left;
struct node *right;
};
The ...
17
votes
10answers
733 views
Efficient algorithm to determine if an alleged binary tree contains a cycle?
One of my favorite interview questions is
In O(n) time and O(1) space, determine whether a linked list contains a cycle.
This can be done using Floyd's cycle-finding algorithm.
My question is ...
17
votes
4answers
789 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
...
16
votes
15answers
2k views
Expression Evaluation and Tree Walking using polymorphism? (ala Steve Yegge)
This morning, I was reading Steve Yegge's: When Polymorphism Fails, when I came across a question that a co-worker of his used to ask potential employees when they came for their interview at Amazon.
...
15
votes
1answer
702 views
How to calculate pointers in a binary tree with the van Emde Boas layout
I'd like to implement a cache-oblivious binary tree that is stored in an array using the van Emde Boas layout, using implicit pointers. All items in the tree are 32-bit integers and the tree will get ...
15
votes
6answers
2k views
Are AVL Trees Evil?
I was reading the article from Steve Yegge about singletons. In it he mentions his teacher told him AVL Trees were evil. Is it just that red and black trees are a better solution?
15
votes
3answers
10k 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.
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. ...
13
votes
5answers
1k 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, ...
12
votes
4answers
1k 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 ...
11
votes
5answers
736 views
Merging 2 Binary Search Trees
How do you merge 2 Binary Search Trees in such a way that the resultant tree contains all the elements of both the trees and also maintains the BST property.
I saw the solution provided in
how to ...
11
votes
8answers
7k views
C How to “draw” a Binary Tree to the console
Im 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 ...
11
votes
8answers
23k 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 ...
10
votes
2answers
500 views
Sort BST in O(n) using constant memory
This is not a homework. Just an interesting task :)
Given a complete binary search three represensted by array. Sort the array in O(n) using constant memory.
Example:
Tree:
8
...
10
votes
6answers
4k views
Looking for fast algorithm to find distance between two nodes in binary tree
How do I find the distance between two nodes in a binary tree? Equivalently, what algorithms are there for finding the most recent common ancestor (lowest common ancestor) of two nodes?
9
votes
2answers
3k views
balancing an AVL tree (C++)
I'm having the hardest time trying to figure out how to balance an AVL tree for my class. I've got it inserting with this:
Node* Tree::insert(int d)
{
cout << "base insert\t" << d ...
9
votes
6answers
1k views
Permutations of a binary tree
Consider a binary tree:
n is a node, if n is an integer
(+ a b) is a node, if a and b are nodes.
We have the following three operations:
(+ a b) -> (+ b a)
(+ (+ a b) c) -> (+ a (+ b c))
(+ a (+ ...
8
votes
3answers
247 views
How to represent a binary tree with tables (html)?
Here is a brain-teaser for the brave. I've been at it for days and just can't come with the solution.
I wanted to come out with something like this:
Using html, css and php only.
I got near, but ...
8
votes
6answers
3k views
Convert a binary tree to linked list, breadth first, constant storage/destructive
This is not homework, and I don't need to answer it, but now I have become obsessed :)
The problem is:
Design an algorithm to destructively flatten a binary tree to a linked list, breadth-first. ...
8
votes
6answers
581 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?
8
votes
6answers
1k 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
/ \ / ...
8
votes
3answers
427 views
Is a red-black tree my ideal data structure?
I have a collection of items (big rationals) that I'll be processing. In each case, processing will consist of removing the smallest item in the collection, doing some work, and then adding 0-2 new ...
8
votes
5answers
3k 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?
8
votes
3answers
3k 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 ...
8
votes
9answers
11k 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 ...
7
votes
2answers
131 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 ...
7
votes
3answers
192 views
Determining if a binary tree is a mirror image - updated
What is the basics algorithm for testing if a tree is symmetrical. Because it is a binary tree, I would assume that it would be a recursive definition of sorts
The formal question is below:
A ...
7
votes
3answers
622 views
How to find largest common sub-tree in the given two binary trees?
Two BSTs 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 node of 2nd tree
...
7
votes
2answers
377 views
How to finding first common ancestor of a node in a binary tree?
Following is my algorithm to find first common ancestor. But I don’t know how to calculate it time complexity, can anyone help?
public Tree commonAncestor(Tree root, Tree p, Tree q) {
if ...
7
votes
3answers
773 views
Persistent (purely functional) Red-Black trees on disk performance
I'm studying the best data structures to implement a simple open-source object temporal database, and currently I'm very fond of using Persistent Red-Black trees to do it.
My main reasons for using ...
7
votes
5answers
661 views
Binary Search Tree for specific intent
We all know there are plenty of self-balancing binary search trees (BST), being the most famous the Red-Black and the AVL. It might be useful to take a look at AA-trees and scapegoat trees too.
I ...
6
votes
1answer
159 views
Binary tree from general tree
I have a tree structure that has a node with a parent ID (unlimited child nodes). For display purposes I need this tree structure as a binary tree. How I do this is at each level nodes are grouped ...
6
votes
3answers
124 views
Are there versions of the C++ STL's associative data structures optimized for numerous partial copies?
I have a large tree that grows as my algorithm progresses. Each node contains set, which I suppose is implemented as balanced binary search tree. Each node's set shall remain fixed after that node's ...
6
votes
1answer
260 views
Self-Balancing Binary tree
I have implemented a Binary search tree and I want to add more functionality in its insertion function such that i makes it self balancing tree
I am coding in C#. Can anybody please suggest me good ...
6
votes
3answers
425 views
binary search vs binary search tree
What is the benefit of a binary search tree over a sorted array with binary search? Just with mathematical analysis I do not see a difference, so I assume there must be a difference in the low-level ...
6
votes
5answers
806 views
Lowest Common Ancestor of a Binary Tree
This is a popular interview question and the only article I can find on the topic is one from TopCoder. Unfortunately for me, it looks overly complicated from an interview answer's perspective.
Isn't ...
6
votes
5answers
1k views
Pretty-printing a binary tree in C (and other imperative languages)
(First-time poster and rather new in programming, so be patient, please!)
I'm interested in both an efficient general algorithm for printing formatted binary trees (in a CLI environment) and a C ...
6
votes
5answers
214 views
Count number of left nodes in BST
Given a BST, I am required to find the number of left nodes of the tree.
Example: `
+---+
| 3 |
+---+
/ \
+---+ +---+
| 5 | | 2 |
...
6
votes
4answers
335 views
Priority Queue with a find function - Fastest Implementation
I am looking at implementing a priority queue with an added requirement, a find/search function which will tell whether an item is anywhere within the queue. So the functions will be: insert, del-min ...
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 ...
6
votes
5answers
604 views
Algorithm to Render a Horizontal Binary-ish Tree in Text/ASCII form
It's a pretty normal binary tree, except for the fact that one of the nodes may be empty.
I'd like to find a way to output it in a horizontal way (that is, the root node is on the left and expands to ...
6
votes
1answer
287 views
Why is TreeSet<T> an internal type in .NET?
So, I was just digging around Reflector trying to find the implementation details of HashSet (out of sheer curiosity based on the answer to another question here) and noticed the following:
internal ...