Divide and Conquer Approach on 2D Array

I am trying to apply an effective divide and conquer approach on a 2D array that is sorted row-wise, and column-wise. Starting from the bottom left cell in the matrix, my algorithm chooses either to move one cell up or one cell to right depending on whether k is > or < than the curr_cell.… Read More Divide and Conquer Approach on 2D Array