We now that binary search exists, which takes log2(n) time. But is it possible to have a base three search where you divide the parts of a search subarray into 3 parts instead of two, and if possible, would it be log3(n) time?
If that is true, then why aren't base 4 and higher searches used either?