Stuck with one binary search problem.

Revision en2, by bunny9, 2019-04-09 15:59:38

Hi,

I'm trying to solve matrix median problem from interviewbit.com.

Can anyone point me in right direction?

Given a N cross M matrix in which each row is sorted, find the overall median of the matrix. Assume N*M is odd.

For example,

Matrix=
[1, 3, 5]
[2, 6, 9]
[3, 6, 9]

A = [1, 2, 3, 3, 5, 6, 6, 9, 9]

Median is 5. So, we return 5.
Tags #binary search

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English bunny9 2019-04-09 15:59:38 4 Tiny change: 'terviewbit](https://' -> 'terviewbit.com](https://'
en1 English bunny9 2019-04-09 15:59:02 484 Initial revision (published)