retagged by
2,468 views
0 votes
0 votes

Binary search tree is an example of :

  1. Divide and conquer technique

  2. Greedy algorithm

  3. Back tracking

  4. Dynamic Programming

retagged by

1 Answer

0 votes
0 votes
Binary search as the name suggest is a search technic of searching key value in a sorted arrangement by halving the entire sorted arrangement and comparing the found value with key value.If the key value is less than the found value, then left hand portion again to be halved and so on. Similarly if the key value is greater than the search value at first halving, then we have to again halv the right hand side of found value and so on.

in this we divide and find out the key value if exist.

so it is a divide and conquer algorithm.

Related questions

1.0k
views
1 answers
0 votes
go_editor asked Mar 27, 2020
1,017 views
Which algorithm has same average, worst case and best case time ?Binary searchMaximum of n numberQuick sortFibonacci search
6.0k
views
1 answers
12 votes
makhdoom ghaya asked Nov 19, 2016
6,031 views
Match the pairs in the following questions: ...
7.3k
views
3 answers
26 votes
go_editor asked Feb 12, 2015
7,338 views
Given below are some algorithms, and some algorithm design paradigms. ... , 2-ii, 3-i, 4-iv}$\text{1-iii, 2-ii, 3-i, 4-v}$
7.3k
views
7 answers
27 votes
khushtak asked Feb 14, 2017
7,258 views
Consider the following table: ...