Start learning 50% faster. Sign in now
In a balanced BST, keys are arranged such that for any node, the left subtree contains keys smaller than the node, and the right subtree contains keys larger than the node. This structure allows Binary Search to perform efficiently, as it eliminates half the search space with each comparison, achieving a time complexity of O(logn). The minimal comparisons and logical traversal make Binary Search optimal for balanced trees. Why Other Options are Incorrect: 1. Linear Search: Linear search checks each node one by one, resulting in O(n) complexity, making it highly inefficient for large datasets. 2. Depth-First Search: DFS explores nodes depth-wise, which is not directly suitable for searching in a sorted structure like BST. 3. Breadth-First Search: BFS examines nodes level-wise, increasing overhead compared to Binary Search in BST. 4. Exponential Search: This method is better suited for arrays rather than tree structures, especially when data sizes are unknown or unbounded.
If each side of an equilateral triangle is 12 cm, then its altitude is equal to:
Two sides of a triangle are 10 cm and 15 cm. Which of the following can be the third side of the triangle?
The area (in square units) of the triangle formed by the vertices (0,2), (2,3), and (3,1) is:
ABC is an equilateral triangle with sides of 24cm. Find the difference between its in-radius and circum-radius.
Two triangles DEF and XYZ are congruent to each other such that DE = 10 cm, YZ = 24 cm, and ∠DEF = ∠XYZ = 90⁰. Find the circumradius of ΔDEF.
...The perimeter of an equilateral triangle is 48√3 cm. Find its height.
What is the height of an equilateral triangle with a side length of 14√7 cm?
The lengths of the three sides of a right-angled triangle are (x-1) cm, (x+1) cm and (x+3) cm, respectively. The hypotenuse of the right-angled triangle...
The smallest side of a right-angled triangle is 7 cm less than the side of a square of perimeter 76 cm. The second largest side of the right-angled tria...