1 1 vote $\_\_\_\_\_\_$ is a Self Balancing binary search tree, where the path from the root to the furthest leaf is no more than twice as long as the path from the root to nearest leaf.Expression treeGame treeRed-Black treeThreaded tree Data Structures ugcnetcse-aug2024 data-structures binary-search-tree + – Shubham Sharma 2 278 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
0 0 votes A Red-Black tree maintains its balance through a specific set of rules (involving coloring nodes red or black). These rules ensure that the tree remains "approximately" balanced, specifically following the property you mentioned:The Rule: The shortest possible path from the root to a leaf consists only of black nodes.The Constraint: The longest possible path can have alternating red and black nodes.The Result: Because no two red nodes can be adjacent, the longest path (root to furthest leaf) cannot be more than twice as long as the shortest path (root to nearest leaf). so option c akash_kumar 9 answered Feb 15 akash_kumar 9 comment Share Follow 0 reply Please log in or register to add a comment.