Why use binary search if there's ternary search?

Viewed 20789

I recently heard about ternary search in which we divide an array into 3 parts and compare. Here there will be two comparisons but it reduces the array to n/3. Why don't people use this much?

15 Answers
Related