Does anyone know if there is any advantage in performance when using recursive binary search rather than normal binary search?
EDIT: I also find this piece of code when reading about recursive binary search...
Code:
int nMid = (nMin + nMax) >> 1;
Does anyone knows what it means?