Tagged Questions
A red-black tree is a type of self-balancing binary search tree, a data structure used in computing science, typically used to implement associative arrays.
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?
11
votes
2answers
1k views
In red-black trees is top-down deletion faster and more space efficient than bottom-up deletion?
Per this page http://www.eternallyconfuzzled.com/tuts/datastructures/jsw_tut_rbtree.aspx
"Top-down deletion" is an implementation of a red-black tree node removal that pro-actively balances a tree by ...
10
votes
1answer
464 views
Red Black Tree versus B Tree
I have a project in which I have to achieve fast search, insert and delete operations on data ranging from megabytes to terabytes. I had been studying data structures of late and analyzing them. Being ...
9
votes
4answers
1k views
What is the reason behind this huge Performance difference in .Net 4
I was just doing some research on RedBlack Tree. I knew that SortedSet class in .Net 4.0 uses RedBlack tree. So I took that part out as is using Reflector and created a RedBlackTree class. Now I am ...
6
votes
1answer
338 views
Red black tree pseudocode redundancy
In introduction to Algorithms Third Edition they have a pseudocode implementation of red-black tree deletion. Here it is...
RB-DELETE(T, z)
y = z
y-original-color = y.color
if z.left == ...
6
votes
3answers
1k views
When to choose RB tree, B-Tree or AVL tree?
As a programmer when should I consider using a RB tree, B- tree or an AVL tree?
What are the key points that needs to be considered before deciding on the choice?
Can someone please explain with a ...
5
votes
2answers
123 views
Is a resultant red-black tree after insertion unique?
Suppose I have a binary search tree which, initially, satisfies all of the red-black conditions and contains one node for every integer s in some set S. Next, I want to a new node; say a (which is not ...
5
votes
3answers
168 views
C# reference trouble
I'm taking an algorithm course at the university, and for one of my projects I want to implement a red-black tree in C# (the implementation itself isn't the project, yet just something i decided to ...
4
votes
4answers
913 views
Using red black trees for sorting
The worst-case running time of insertion on a red-black tree is O(lg n) and if I perform a in-order walk on the tree, I essentially visit each node, so the total worst-case runtime to print the sorted ...
4
votes
3answers
191 views
Guidelines to an Iterator Class
I have a Red Black tree implemented in c++. It supports the functionality of a STL map. Tree nodes contain keys and the values mapped. I want to write an iterator class for this, but I'm stuck with ...
4
votes
1answer
1k views
Interval tree algorithm that supports merging of intervals with no overlap
I'm looking for an interval tree algorithm similar to the red-black interval tree in CLR but that supports merging of intervals by default so that there are never any overlapping intervals.
In other ...
4
votes
1answer
90 views
Red-Black trees - Erasing a node with two non-leaf children
I've been implementing my own version of a red-black tree, mostly basing my algorithms from Wikipedia (http://en.wikipedia.org/wiki/Red-black_tree). Its fairly concise for the most part, but there's ...
4
votes
1answer
112 views
Find an algorithm in RBTREE in O(logn)
I need to find a data structure which I can do with the following actions:
Build(S,k) - O(nlogn)
Search(S,k) - O(logn)
Insert(S,k) - O(logn)
Delete(S,k) - O(logn)
Decrease-Upto(s,k,d) - O(logn) - ...
3
votes
1answer
68 views
Red Black tree print in level order in C
I have completed a red black tree in c and i find it hard to print it in level-order. I have a print-inorder but i cant imagine how am i supposed to display it as a tree in the console print. Is it ...
3
votes
1answer
108 views
Which is easier to implement: 2-3-4 Tree or Red-Black Tree?
The textbook I'm learning from (Lafore) presents Red-Black Trees first, and does not include any pseudo-code, although the associated algorithms as presented seems fairly complex, with many unique ...
3
votes
1answer
255 views
Can I represent a Red-black tree as binary leaf tree?
I've been playing around with RB tree implementation in Haskell but having difficulty changing it a bit so the data is only placed in the leaves, like in a binary leaf tree:
/+\
/ \
/+\ ...
3
votes
1answer
290 views
Why is avl tree faster for searching than red black tree?
I have read it in a couple of places that avl tree search faster, but not able to understand. As I understand :
max height of red-black tree = 2*log(N+1)
height of AVL tree = 1.44*logo(N+1)
Is it ...
3
votes
3answers
194 views
Deleting a whole subtree of a red-black tree would keep its properties?
I'm currently implementing a red-black tree data structure to perform some optimizations for an application.
In my application, at a given point I need to remove all elements lower or equals to a ...
3
votes
2answers
304 views
Red-black tree - how to rotate if root is the grandparent?
I am working on writing red-black tree myself. But when I test the rotation that involves root to be rotated, somewhat it loses reference.
Tree structure:
45
/ \
...
3
votes
5answers
768 views
CompareTo may return 0, alternative to TreeSet/TreeMap
I need a sorted set of objects and am currently using the TreeSet. My problem is that the compareTo of the objects will often return 0, meaning the order of those two objects is to be left unchanged. ...
2
votes
3answers
306 views
How does a red-black tree work?
There are lots of questions around about red-black trees but none of them answer how they work. Why is it called red-black? How does this keep the tree balanced (thus increasing performance over an ...
2
votes
1answer
401 views
STL-like Java Red-black tree / TreeSet/Map and linked lists with non fail-fast/safe iterators
I am looking for a library with a Red-black tree and Linked list implementation offering iterators which are not fail-fast. I would like to have the same functionality as I do in C++ using STL and ...
2
votes
3answers
465 views
Javascript: Need a decent red black tree implementation
Where can I find one ready for use? Or for that matter, a good collection of "standard" data structures, if you know of any?
2
votes
2answers
119 views
What Tree structure should I use for indexing?
I'm thinking of experimenting with using a tree-structure for indexing as I want to test whether it is faster than my current indexing implementation which is in essence a hash based lookup.
I've ...
2
votes
2answers
650 views
Applications of red-black trees
What are the applications of red-black trees? Is there any application where only RB Trees can be used and no other data structures?
2
votes
2answers
483 views
Iterative Algorithm for Red-Black Tree
Can anyone please suggest me any pointer to an iterative algorithm for insertion and deletion into a Red-Black Tree? All the algorithms available in .Net/C# are based on recursion, which I can't trust ...
2
votes
4answers
501 views
Hash tables v self-balancing search trees
I am curious to know what is the reasoning that could overweighs towards using a self-balancing tree technique to store items than using a hash table.
I see that hash tables cannot maintain the ...
2
votes
2answers
129 views
Why can't RB-Tree be a list?
I have a problem with the rb-trees. according to wikipedia, rb-tree needs to follow the following:
A node is either red or black.
The root is black. (This rule is used in some definitions and not ...
1
vote
0answers
40 views
How are red-black trees isomorphic to 2-3-4 trees?
I have a basic understanding of both red black trees and 2-3-4 trees and how they maintain the height balance to make sure that the worst case operations are O(n logn).
But, I am not able to ...
1
vote
1answer
112 views
Comparison about balanced binary search trees
I've read some Q&As about self-balancing binary trees, but I'm not quite familiar with all of them.
The first one of them I got to know is AVL, the second is Red-Black tree.
There are something ...
1
vote
1answer
31 views
What is a sensible data-structure for allowing efficient synchronisation between two root paths?
I am working on an application that involves maintaining consistency between two local directories. Specifically, the directories should be identical, with the exception that all files in one of the ...
1
vote
1answer
159 views
Can I insert data unsorted in Red-black tree?
While I'm still struggling to find a solution for this question, i have another one which maybe is easier. The following is the insert function of Okasaki red-black tree implementation. What I want to ...
1
vote
2answers
220 views
What are the disadvantages of red black trees?
From all what I been reading about Red - Black trees it seems like they are the best data structure for storing data.
I am trying to build a database and I am wondering, just in the aspect of Red - ...
1
vote
1answer
291 views
Red Black Tree - printing tree in preorder
I've made red-black-tree implementation based on Cormen, but I must have broke something as it doesn't work like it should. I believe I rewrote Cormen correctly but I have no idea what is wrong ...
1
vote
1answer
409 views
Red Black Tree Insert Issue
I am new to red black trees and I am having trouble where this issue is coming from. The rotations and the insertion method looks correct. However, when I enter the numbers
100
45
34
55
74
50
130
...
1
vote
2answers
196 views
Red Black Tree question
Can a node in a red black tree have one red and one black child?
I have the following tree, I have specified just the colors here. The leaf nodes are ignored.
B
R ...
1
vote
1answer
97 views
handling collisions in associative array implemented using self-balancing tree
How are collisions handled in associative arrays implemented using self-balanced tree? If two objects have same hash are they stored in a linked list attached to a tree node or two nodes are created? ...
1
vote
1answer
424 views
red black tree - element removal without dummys
I am looking for a guide how to implement the deletion of an element in a red-black-tree without using a dummy node (i.e. the leaf nodes actually being null-pointers). All implementations I found on ...
1
vote
3answers
172 views
Algorithm for removing multiple elements from a Red-Black tree
Is there an algorithm that allows to delete multiple nodes in RB or the only algorithm to delete nodes from RB is to do it in a way:
1. Delete one and
2. if necessary fix tree
1
vote
3answers
146 views
How to tell whether a red-black tree can have X black nodes and Y red nodes or not
I have an exam next week in algorithms, and was given questions to prepare for it. One of these questions has me stumped though.
"Can we draw a red-black tree with 7 black nodes and 10 red nodes? ...
1
vote
4answers
647 views
Computational complexity of TreeSet operations in Java?
I am trying to clear up some things regarding complexity in some of the operations of TreeSet. On the javadoc it says:
"This implementation provides
guaranteed log(n) time cost for the
basic ...
1
vote
1answer
607 views
red-black tree - construction
Recently, I have been going through search trees and I encountered red-black trees, the point confusing me is, In r-b tree, the root node should be black thats fine, now how will I decide whether the ...
1
vote
4answers
603 views
Red-Black Tree Deleting Problem C#
I am trying to implement a red-black tree in C#. I already created an object called sRbTreeNode which has a String key, Color, Left, Right and Parent properties.
I successfully managed implementing ...
1
vote
3answers
2k views
Implementation of Red-Black Tree in C#
I'm looking for an implementation of a Red-Black Tree in C#, with the following features:
Search, Insert and Delete in O(log n).
Members type should be generic.
Support in Comparer(T), for sorting T ...
1
vote
4answers
1k views
Are AVL trees always a subset of red black trees?
I am searching for a proof that all AVL trees can be colored like a red-black tree?
Can anyone give the proof?
0
votes
0answers
19 views
Number of Nodes with Specific Black-Height in Red-Red-Black trees
I was asked in a homework assignment to answer a question regarding "Red-Red-Black" trees. The description of a red-red-black tree (copied from somewhere in the internet) is:
"A red-red-black tree is ...
0
votes
1answer
75 views
Red Black Tree delete malfunction in C
I have almost completed a red black tree but my delete is malfunctioning. It may delete a node it may not. After i delete the root and press the print option my screen is spammed of nodes that i ...
0
votes
1answer
79 views
Example Applications of Some Data Structures [closed]
I have knownledge of following data structures and I'm looking for example usage of them in real-world applicatons;
Binary Search Trees
Red-Black Trees
Interval Trees(Augmented RBT)
Hash Tables
0
votes
1answer
54 views
Finding the rank in a red-black tree without using a parent pointer
I was given code for a red-black tree in class. The struct used to create a node does not have a parent pointer. I have most of my project working, but I cannot figure out how to compute the rank in ...
0
votes
0answers
45 views
maximum height in a red-black tree
i read that maximum height of a red black tree with internal nodes n
=2log(n+1)
the induction method proof is familiar to me...but i am facing a perception problem:(below is what i think)
if no. ...