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.
1
vote
0answers
25 views
Red-Black Tree Delete Fixup in CLRS Second Edition, in Clojure
I am implementing red-black tree deletion for interval trees following CLRS 2nd edition, fourth printing, pg 288 ans 289.
Summary of bug:
RB-Delete-Fixup
If x is the sentinel node, which is ...
0
votes
2answers
40 views
Red Black Tree Insert Issues C++
I'm currently working on an assignment where I am to implement a simple version of a Red Black Tree. I am currently working in Xcode and it's currently giving me an error GDB: Program received signal: ...
0
votes
1answer
27 views
Big-O between RB Tree and Heap as sorted set
If we construct sorted set based on RB Tree and Heap. Do insertion() and deleteMax() for n times.
(1). What's the Big-O ?
My idea: For both RB tree and heap , deleteMax() and insertion() will all ...
0
votes
2answers
41 views
binary search tree with randomized insertion vs red black tree
I have read up on red black trees, and I understand that they try to solve the problem of the tree becoming unbalanced. However, what if you were to use randomized insertion. For example:
Consider ...
0
votes
1answer
44 views
STL Map where is _Rb_tree_insert_and_rebalance implemented?
I was looking through how the STL std::map is implemented. I knew that it is implemented using Red Black Trees. So, I just was curious to know how Red Black Trees are implemented in STL for reasons of ...
3
votes
5answers
73 views
Does inserting/erasing an element from a std::map modify the iteration sequence?
Say I have the following code:
typedef std::map< int, std::string >::iterator Iterator;
Iterator iter = myMap.begin();
while (iter != myMap.end())
{
Iterator current = iter;
++iter;
...
-1
votes
0answers
26 views
Red-Blcak tree implementation of WEIRDFN on SPOJ giving TLE
I implemented WEIRDFN on SPOJ link(http://www.spoj.com/problems/WEIRDFN/) using red-black trees which is much similar to Codechef problem RRATING which got AC using same implementation . How much ...
3
votes
1answer
38 views
Red Black Tree Insertion Questions why rotate?
So I have a Red Black Tree as followed:
2 = Root Black
Children = 1 (Black/Left), 4 (Red/Right)
Children of 1 = NIL & NIL => Height of Black Subtree is then 2
Children of 4 = 3 (Black/Left), ...
8
votes
2answers
270 views
Problems with Promote() using the red-black tree implementation from The Tomes of Delphi
I am using the Red-Black tree implementation written by Julian Bucknall in his well-known book, The Tomes Of Delphi. Source code can be downloaded here, and I am using the code as-is in Delphi 2010, ...
1
vote
1answer
56 views
How does RBTree's color trick work? [closed]
In wikipedia : Red-black_tree
Tracking the color of each node requires only 1 bit of information per node because there >are only two colors. The tree does not contain any other data specific ...
0
votes
2answers
79 views
How to save the memory when storing color information in Red-Black Trees?
I've bumped into this question at one of Coursera algorithms course and realized that I have no idea how to do that. But still, I have some thoughts about it. The first thing that comes into my mind ...
0
votes
0answers
68 views
Red-Black tree fixing insert
I'm creating my own Map structure (needed for class) using RB tree. From what I've learned about insertion we have 3 cases to handle. I'm following this implementation. Still I'm getting a memory ...
7
votes
0answers
157 views
Statistical performance of purely functional maps and sets
Given a data structure specification such as a purely functional map with known complexity bounds, one has to pick between several implementations. There is some folklore on how to pick the right one, ...
0
votes
0answers
14 views
NullException being thrown when trying to determine if a node is null
guys!
I'm working on an assignment using Red-Black trees and I can't seem to find what's wrong with my code. The function takes a node in the tree and treats it as the root. Then it rotates it with ...
0
votes
0answers
55 views
Red Black Tree ( Insert Fixup)
Good day. Can you please help me find the problem with this code? I am implementing a red black tree program. thanks.
if there's nothing wrong with this code please tell me because my rotation might ...
1
vote
2answers
44 views
Children in a red / black tree?
According to this explanation of red black tree, the tree must have the following properties:
A node is either red or black.
The root is black. (This rule is sometimes omitted. Since the root can ...
0
votes
1answer
42 views
Converting tree insertion to iterative function
My question is how can I convert this function pair into a single non recursive call? As I understand any recursive call may be turned into an iterative algorithm yielding the same result.
public ...
9
votes
2answers
118 views
Working of std::map<t1, t2>::erase(iterator position)?
I read on cplusplus.com that the operation to delete an element in a std::map by passing the iterator as argument is constant time.
If I am not wrong(and please correct me if I am) the iterators ...
0
votes
1answer
78 views
Inserting into Augmented Red Black Tree
I am looking at the code of inserting into an augmented Red black tree. This tree has an additional field called "size" and it keeps the size of a subtree rooted at a node x. Here is the pseudocode ...
2
votes
1answer
58 views
Why aren't these two nodes black in a red-black tree?
As I understood it, in a red-black tree, when I insert a new node, and when I encounter a black node with 2 red children on my way down, I need to flip the colors, i.e. make the parent red and its 2 ...
0
votes
1answer
76 views
Can we have a red-black tree without any red nodes? [closed]
I wonder whether a red black tree should have at least one red node. Also, given a BST, if we can convert it into an RBT, is there a unique way to turn this tree into a red-black tree?
2
votes
3answers
140 views
Inserting into red black tree
I am taking an algorithms course and in my course slides, there is an example of insertion into a red-black tree:
My question is, why don't we let "2" be a leaf node here? It looks like if we let ...
5
votes
1answer
114 views
Can anyone explain the deletion of Left-Lean-Red-Black tree clearly?
I am learning Left-Lean-Red-Black tree, from Prof.Robert Sedgewick
http://www.cs.princeton.edu/~rs/talks/LLRB/LLRB.pdf
http://www.cs.princeton.edu/~rs/talks/LLRB/RedBlack.pdf
While I got to ...
6
votes
2answers
187 views
Red Black Tree inserting: why make nodes red when inserted?
In Red Black Tree Properties doesn't contain any rule for insert node color, how ever always we are inserting red color nodes.
If we insert black color node does it violate any Properties( any rule ...
1
vote
5answers
93 views
What wrong with my Red Black Tree destructor?
I'm building a Red-Black Tree, but may be there are some problems with my class RBTree's destructor. I add 10^7 value to the tree, and then call the destructor, but the memory seem to be not freed up. ...
0
votes
3answers
119 views
Amortized complexity of a balanced binary search tree
I'm not entirely sure what amortized complexity means. Take a balanced binary search tree data structure (e.g. a red-black tree). The cost of a normal search is naturally log(N) where N is the number ...
0
votes
1answer
172 views
Insertion in Red-Black tree
I am trying to implement a Red-Black tree as per the CLRS textbook. The TreeNode class defines the nodes and has got functions for defining the nodes, determining whether the node is a right node or a ...
1
vote
1answer
34 views
Improving my redblack tree implementation
I wrote a rb-tree implementation. Nodes are allocated using malloc. Is it a good idea to allocate a large table at the beginning and use that space to allocate nodes and doubling the size each time ...
2
votes
1answer
104 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> ...
2
votes
1answer
114 views
Order of insertion for worst case black height of a red black tree
Lets say we are dealing with the keys 1-15. To get the worst case performance of a regular BST, you would insert the keys in ascending or descending order as follows:
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, ...
2
votes
2answers
426 views
Why red-black tree based implementation for java TreeMap?
The third paragraph of wikipedia's article on AVL trees says: "Because AVL trees are more rigidly balanced, they are faster than red-black trees for lookup-intensive applications."
So, shouldn't ...
-1
votes
1answer
103 views
Sorted Array to 2-4+ Tree in Linear Time
I need help with the following question:
Describe an algorithm that given a sorted array of size n builds a 2-4+ tree that contains
the same keys as the array. The algorithm should run in time O(n).
...
3
votes
2answers
229 views
Implementing Dijkstra's shortest path algorithm using a red/black tree?
I know that Dijkstra's algorithm in reality is implemented using a Fibonacci heap. But can it also be implemented using a red black tree and still have a worst-case running time of O(m log n)?
1
vote
1answer
206 views
Trie vs red-black tree: which is better in space and time?
Tries and red-black trees are very efficient for storing strings.
Which has better time complexity? How about space complexity?
1
vote
2answers
583 views
Red Black Tree implementation in C
I have implemented Insertion part of Red black tree in C. However, I am not getting any output when I invoke DISPLAY function. I checked the functional correctness with BST implementation (some parts ...
0
votes
2answers
195 views
Perfect Binary Tree : DSW and RB balanced trees
I know we can preprocess and turn any binary search tree into a perfect binary tree using DSW algorithm or red black balanced trees.
How do these two methods differ time-complexity wise?
Can you ...
6
votes
2answers
496 views
Red Black Tree Top-Down Deletion Algorithm
I am implementing a Red Black Tree with insert, search and delete functions in O (log n) time. Insert and search are working fine. However I am stuck on delete. I found this ppt slide on the internet ...
1
vote
1answer
63 views
Why don't we add a black node instead of a red node in Red Black tree insertion?
In red black tree insertion, we always choose to add a new node as red so that we can avoid changing the black height of the tree. Why this is more desirable than adding a black node?
0
votes
0answers
747 views
Red-Black-Tree Insert [closed]
I'm writing this message because I have problem with my RB Tree Insert. If you look on this code, I'll be really grateful. This code is in C++, it's from Cormen's book. Maybe you will see where the ...
0
votes
0answers
391 views
Red black tree deletion
I'm having trouble in writing a red-black tree deletion function (with sentinels).
After many hours of trouble shooting I came to the conclusion that the problem arises in the following steps:
...
0
votes
1answer
97 views
Scala: How to specify that a collection contains ordered elements?
I would like to define a red-black tree that contains elements which can be compared, but I can't seem to get the types correct. The last line of this code "x < data" fails to compile : "value ...
0
votes
0answers
33 views
Bottum-up or Top-Down deletion implementation of Red Black Trees
What is the easiest way to implement RBT - Bottom-up or Top-Down in your opinion? If I implemented insertion in a top-down manner, do you think it's best to implement deletion in the same way?
2
votes
1answer
188 views
Red-Black Tree Insert - Recursion Issue - C++
I have a recursive insert method that is being implemented in a Red-Black Tree. After returning from the recursive call, I am trying to see whether the local root's child is red. But what is actually ...
0
votes
1answer
288 views
Red-Black Tree - Rotation Method Implementation - C++
I am implementing a Red-Black tree in c++, but I am having trouble with my rotation methods. The insert method works just fine without any balancing, but as soon as I try to rotate, my tree loses ...
0
votes
1answer
72 views
Red black tree red children property check
Given a RB Tree, I need to write an algorithm that checks that every node that is red, has both its children black.
i.e. returns true if every red node only has black children, false otherwise.
Here ...
0
votes
1answer
171 views
Red black tree black height property check
Given a RB Tree, I need to write an efficient algorithm that checks whether for each node, all paths from from the node to descendant leaves contain the same number of black nodes.
i.e. returns a ...
0
votes
1answer
149 views
Drawing Binary trees (AVL and Red-black trees)
I don't understand how to do this, can someone please help.
I need to insert the following keys into an empty AVL tree and show the tree after each insertion.
The keys should be taken as strings of ...
-4
votes
1answer
184 views
AVL and Red-Black Trees [closed]
I do not know how to do either of these problems. However, I did find example code for the AVL tree here: http://users.cis.fiu.edu/~weiss/dsaajava/code/DataStructures/AvlTree.java
However, I still am ...
1
vote
1answer
90 views
Changing From Assert Function in C To If Statement
I have found some code online for red black trees, and am trying to implement it.
I do not want to use the assert function though which the original code has located here
I am getting a seg fault on ...
1
vote
1answer
339 views
Red Black Tree Insertion And Fixing From Pseudocode Having Issues
I have pseudo code from the book "Introduction to Algorithms" by Thomas H Cormen and other for red and black trees.
The pseudo code for insertion and insert fix are located here
I am getting a seg ...
