Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was recently given this interview question and I'm curious what a good solution to it would be.

Say I'm given a 2d array where all the numbers in the array are in increasing order from left to right and top to bottom.

What is the best way to search and determine if a target number is in the array?

Now, my first inclination is to utilize a binary search since my data is sorted. I can determine if a number is in a single row in O(log N) time. However, it is the 2 directions that throw me off.

Another solution I thought may work is to start somewhere in the middle. If the middle value is less than my target, then I can be sure it is in the left square portion of the matrix from the middle. I then move diagnally and check again, reducing the size of the square that the target could potentially be in until I have honed in on the target number.

Does anyone have any good ideas on solving this problem?

Example array:

Sorted left to right, top to bottom.

1 2 4 5 6  
2 3 5 7 8  
4 6 8 9 10  
5 8 9 10 11  
share|improve this question
Simple question: may it be that you can have a neighbor with the same value: [[1 1][1 1]] ? – Matthieu M. Mar 17 '10 at 9:15
12  
please accept an answer to this question, thanks – jcolebrand Nov 9 '10 at 22:44

15 Answers

Here's a simple approach:

  1. Start at the bottom-left corner.
  2. If the target is less than that value, it must be above us, so move up one.
  3. Otherwise we know that the target can't be in that column, so move right one.
  4. Goto 2.

For an NxM array, this runs in O(N+M). I think it would be difficult to do better. :)

Edit: Lots of good discussion. I was talking about the general case above; clearly, if N or M are small, you could use a binary search approach to do this in something approaching logarithmic time.

share|improve this answer
4  
apply binary search to the diagonal walk and you've got O(logN) or O(logM) whichever is higher. – Anurag Mar 16 '10 at 21:05
I like this approach. I don't know whether my answer is better than O(N+M) or not, my algorithm-foo isn't that strong, but this one is certainly easy to implement correctly. – Jeffrey L Whitledge Mar 16 '10 at 21:08
3  
@Anurag - I don't think the complexity works out that well. A binary search will give you a good place to start, but you'll have to walk one dimension or the other all the way, and in the worst case, you could still start in one corner and end in the other. – Jeffrey L Whitledge Mar 16 '10 at 21:13
It is not very difficult to do better than O(n+m). :) – Svante Mar 17 '10 at 1:36
1  
If N = 1 and M = 1000000 i can do better than O(N+M), So another solution is applying binary search in each row which brings O(N*log(M)) where N<M in case that this yields smaller constant. – Luka Rahne Oct 7 '11 at 23:47
show 11 more comments

I would use the divide-and-conquer strategy for this problem, similar to what you suggested, but the details are a bit different.

This will be a recursive search on subranges of the matrix.

At each step, pick an element in the middle of the range. If the value found is what you are seeking, then you're done.

Otherwise, if the value found is less than the value that you are seeking, then you know that it is not in the quadrant above and to the left of your current position. So recursively search the two subranges: everything (exclusively) below the current position, and everything (exclusively) to the right that is at or above the current position.

Otherwise, (the value found is greater than the value that you are seeking) you know that it is not in the quadrant below and to the right of your current position. So recursively search the two subranges: everything (exclusively) to the left of the current position, and everything (exclusively) above the current position that is on the current column or a column to the right.

And ba-da-bing, you found it.

Note that each recursive call only deals with the current subrange only, not (for example) ALL rows above the current position. Just those in the current subrange.

Here's some pseudocode for you:

bool numberSearch(int[][] arr, int value, int minX, int maxX, int minY, int maxY)

if (minX == maxX and minY == maxY and arr[minX,minY] != value)
    return false
if (arr[minX,minY] > value) return false;  // Early exits if the value can't be in 
if (arr[maxX,maxY] < value) return false;  // this subrange at all.
int nextX = (minX + maxX) / 2
int nextY = (minY + maxY) / 2
if (arr[nextX,nextY] == value)
{
    print nextX,nextY
    return true
}
else if (arr[nextX,nextY] < value)
{
    if (numberSearch(arr, value, minX, maxX, nextY + 1, maxY))
        return true
    return numberSearch(arr, value, nextX + 1, maxX, minY, nextY)
}
else
{
    if (numberSearch(arr, value, minX, nextX - 1, minY, maxY))
        return true
    reutrn numberSearch(arr, value, nextX, maxX, minY, nextY)
}
share|improve this answer
+1: This is a O(log(N)) strategy, and thus is as good of an order as one is going to get. – Rex Kerr Mar 16 '10 at 22:15
2  
@Rex Kerr - It looks like O(log(N)), since that's what a normal binary search is, however, note that there are potentially two recursive calls at each level. This means it is much worse than plain logarithmic. I don't believe the worse case is any better than O(M+N) since, potentially, every row or every column must be searched. I would guess that this algorithm could beat the worst case for a lot of values, though. And the best part is that it's paralellizable, since that's where the hardware is headed lately. – Jeffrey L Whitledge Mar 16 '10 at 22:36
1  
@JLW: It is O(log(N))--but it's actually O(log_(4/3)(N^2)) or something like that. See Svante's answer below. Your answer is actually the same (if you meant recursive in the way I think you did). – Rex Kerr Mar 16 '10 at 23:07
1  
@Svante - The subarrays do not overlap. In the first option, they have no y-element in common. In the second option, they have no x-element in common. – Jeffrey L Whitledge Mar 17 '10 at 3:10
1  
I'm not sure if this is logarithmic. I computed the complexity using the approximate recurrence relation T(0) = 1, T(A) = T(A/2) + T(A/4) + 1, where A is the search area, and ended up with T(A) = O(Fib(lg(A))), which is approximately O(A^0.7) and worse than O(n+m) which is O(A^0.5). Maybe I made some stupid mistake, but it looks like the algorithm is wasting a lot of time going down fruitless branches. – Strilanc Mar 18 '10 at 23:59
show 9 more comments

Start in the middle. If this value is bigger than the target, then the target cannot be in the lower right quadrant. If it is smaller, then it cannot be in the upper left quadrant. You can thus do a binary search on the upper left to lower right diagonal, which will take O(log2(max(n,m))). From the endpoint of this binary search, the target cannot be in the lower right nor the upper left "quadrant". You have now at least halved the problem space. Recurse on the remaining "quadrants". Overall time complexity seems to be O(log2(max(n,m)).log2(n.m)) = O(log2(max(n,m)+n.m)), which is asymptotically the same as O(log2(n.m)). If one of the dimensions gets much smaller than the other, this approaches the O(log2n) of an ordinary binary search.

UPDATE: This is wrong. This algorithm is actually something like O(log2(max(n,m)).min(n,m)), as pointed out in the comments. Please redirect your attention to Jeffrey's and Nate's solutions. I am not sure about which is actually better now; I'll try to analyze. I am sorry for the confusion.

share|improve this answer
+1 I can't check your math right now, but it looks good to me and the subscripts are pretty. Well done! – Jeffrey L Whitledge Mar 16 '10 at 22:56
Neat, but I'm not sure about the analysis. Worst case is splitting the square into fourths, which means on iteration j you'll be looking at 2^j squares, each with a diagonal of n/(2^j). Total work: sum from j=0 to log(n) of (2^j * log(n/(2^j)), which converges to O(n). – Nate Kohl Mar 17 '10 at 18:13
That would mean that the reasoning "you have halved the problem space" is flawed. In fact, I am, in a sense, only doing a binary search in one dimension, while I have a hidden linear search in the other; it seems thus to be O(log(max(n,m)) min(n,m)). I'll try to get some experimental data to confirm this. – Svante Mar 17 '10 at 21:26

This is a short proof of the lower bound on the problem.

You cannot do it better than linear time (in terms of array dimensions, not the number of elements). In the array below, each of the elements marked as * can be either 5 or 6 (independently of other ones). So if your target value is 6 (or 5) the algorithm needs to examine all of them.

1 2 3 4 *
2 3 4 * 7
3 4 * 7 8
4 * 7 8 9
* 7 8 9 10

Of course this expands to bigger arrays as well. This means that this answer is optimal.

Update: As pointed out by Jeffrey L Whitledge, it is only optimal as the asymptotic lower bound on running time vs input data size (treated as a single variable). Running time treated as two-variable function on both array dimensions can be improved.

share|improve this answer
You have not demonstrated that that answer is optimal. Consider, for example, an array that's ten-across and one-million down in which the fifth row contains values all higher than the target value. In that case the proposed algorithm will do a linier search up 999,995 values before getting close to the target. A bifurcating algorithm like mine will only search 18 values before nearing the target. And it performs (asymtotically) no worse than the proposed algorithm in all other cases. – Jeffrey L Whitledge Mar 19 '10 at 13:45
@Jeffrey: It is a lower bound on the problem for the pessimistic case. You can optimize for good inputs, but there exist inputs where you cannot do better than linear. – Rafał Dowgird Mar 19 '10 at 13:53
Yes, there do exist inputs where you cannot do better than linear. In which case my algorithm performs that linear search. But there are other inputs where you can do way better than linear. Thus the proposed solution is not optimal, since it always does a linear search. – Jeffrey L Whitledge Mar 19 '10 at 13:56
This shows the algorithm must take BigOmega(min(n,m)) time, not BigOmega(n+m). That's why you can do much better when one dimension is significantly smaller. For example, if you know there will only be 1 row, you can solve the problem in logarithmic time. I think an optimal algorithm will take time O(min(n+m, n lg m, m lg n)). – Strilanc Mar 19 '10 at 15:38
Updated the answer accordingly. – Rafał Dowgird Mar 21 '10 at 15:26
show 2 more comments

I think Here is the answer and it works for any kind of sorted matrix

bool findNum(int arr[][ARR_MAX],int xmin, int xmax, int ymin,int ymax,int key)
{
    if (xmin > xmax || ymin > ymax || xmax < xmin || ymax < ymin) return false;
    if ((xmin == xmax) && (ymin == ymax) && (arr[xmin][ymin] != key)) return false;
    if (arr[xmin][ymin] > key || arr[xmax][ymax] < key) return false;
    if (arr[xmin][ymin] == key || arr[xmax][ymax] == key) return true;

    int xnew = (xmin + xmax)/2;
    int ynew = (ymin + ymax)/2;

    if (arr[xnew][ynew] == key) return true;
    if (arr[xnew][ynew] < key)
    {
        if (findNum(arr,xnew+1,xmax,ymin,ymax,key))
            return true;
        return (findNum(arr,xmin,xmax,ynew+1,ymax,key));
    } else {
        if (findNum(arr,xmin,xnew-1,ymin,ymax,key))
            return true;
        return (findNum(arr,xmin,xmax,ymin,ynew-1,key));
    }
}
share|improve this answer

Interesting question. Consider this idea - create one boundary where all the numbers are greater than your target and another where all the numbers are less than your target. If anything is left in between the two, that's your target.

If I'm looking for 3 in your example, I read across the first row until I hit 4, then look for the smallest adjacent number (including diagonals) greater than 3:

1 2 4 5 6
2 3 5 7 8
4 6 8 9 10
5 8 9 10 11

Now I do the same for those numbers less than 3:

1 2 4 5 6
2 3 5 7 8
4 6 8 9 10
5 8 9 10 11

Now I ask, is anything inside the two boundaries? If yes, it must be 3. If no, then there is no 3. Sort of indirect since I don't actually find the number, I just deduce that it must be there. This has the added bonus of counting ALL the 3's.

I tried this on some examples and it seems to work OK.

share|improve this answer
A down vote with no comment? I think this is O(N^1/2) since the worst case performance requires a check of the diagonal. At least show me a counter example where this method doesn't work ! – Grembo Mar 17 '10 at 16:55
+1: nice solution... creative, and good that it finds all solutions. – Tony D Mar 2 '11 at 4:51

EDIT:

I misunderstood the question. As the comments point out this only works in the more restricted case.

In a language like C that stores data in row-major order, simply treat it as a 1D array of size n * m and use a binary search.

share|improve this answer
Yes, why make it more complex than it has to be. – erikkallen Mar 19 '10 at 13:40
Array is not sorted, thus no bin search can be applied to it – Miollnyr Mar 19 '10 at 13:46
1  
This will only work if the last element of each row is higher than the first element on the next row, which is a much more restrictive requirement than the problem proposes. – Jeffrey L Whitledge Mar 19 '10 at 13:48
Thanks, I've edited my answer. Didn't read carefully enough, particularly the example array. – Hugh Brackett Mar 19 '10 at 14:06

A. Do a binary search on those lines where the target number might be on.

B. Make it a graph : Look for the number by taking always the smallest unvisited neighbour node and backtracking when a too big number is found

share|improve this answer

Binary search would be the best approach, imo. Starting at 1/2 x, 1/2 y will cut it in half. IE a 5x5 square would be something like x == 2 / y == 3 . I rounded one value down and one value up to better zone in on the direction of the targeted value.

For clarity the next iteration would give you something like x == 1 / y == 2 OR x == 3 / y == 5

share|improve this answer
note that you get a triangle, not a square after division – Drakosha Mar 16 '10 at 20:42
Good catch Drakosha – Woot4Moo Mar 16 '10 at 21:13

Well, to begin with, let us assume we are using a square.

1 2 3
2 3 4
3 4 5

1. Searching a square

I would use a binary search on the diagonal. The goal is the locate the smaller number that is not strictly lower than the target number.

Say I am looking for 4 for example, then I would end up locating 5 at (2,2).

Then, I am assured that if 4 is in the table, it is at a position either (x,2) or (2,x) with x in [0,2]. Well, that's just 2 binary searches.

The complexity is not daunting: O(log(N)) (3 binary searches on ranges of length N)

2. Searching a rectangle, naive approach

Of course, it gets a bit more complicated when N and M differ (with a rectangle), consider this degenerate case:

1  2  3  4  5  6  7  8
2  3  4  5  6  7  8  9
10 11 12 13 14 15 16 17

And let's say I am looking for 9... The diagonal approach is still good, but the definition of diagonal changes. Here my diagonal is [1, (5 or 6), 17]. Let's say I picked up [1,5,17], then I know that if 9 is in the table it is either in the subpart:

            5  6  7  8
            6  7  8  9
10 11 12 13 14 15 16

This gives us 2 rectangles:

5 6 7 8    10 11 12 13 14 15 16
6 7 8 9

So we can recurse! probably beginning by the one with less elements (though in this case it kills us).

I should point that if one of the dimensions is less than 3, we cannot apply the diagonal methods and must use a binary search. Here it would mean:

  • Apply binary search on 10 11 12 13 14 15 16, not found
  • Apply binary search on 5 6 7 8, not found
  • Apply binary search on 6 7 8 9, not found

It's tricky because to get good performance you might want to differentiate between several cases, depending on the general shape....

3. Searching a rectangle, brutal approach

It would be much easier if we dealt with a square... so let's just square things up.

1  2  3  4  5  6  7  8
2  3  4  5  6  7  8  9
10 11 12 13 14 15 16 17
17 .  .  .  .  .  .  17
.                    .
.                    .
.                    .
17 .  .  .  .  .  .  17

We now have a square.

Of course, we will probably NOT actually create those rows, we could simply emulate them.

def get(x,y):
  if x < N and y < M: return table[x][y]
  else: return table[N-1][M-1]            # the max

so it behaves like a square without occupying more memory (at the cost of speed, probably, depending on cache... oh well :p)

share|improve this answer

Binary search through the diagonal of the array is the best option. We can find out whether the element is less than or equal to the elements in the diagonal.

share|improve this answer

I have a recursive Divide & Conquer Solution. Basic Idea for one step is: We know that the Left-Upper(LU) is smallest and the right-bottom(RB) is the largest no., so the given No(N) must: N>=LU and N<=RB

IF N==LU and N==RB::::Element Found and Abort returning the position/Index If N>=LU and N<=RB = FALSE, No is not there and abort. If N>=LU and N<=RB = TRUE, Divide the 2D array in 4 equal parts of 2D array each in logical manner.. And then apply the same algo step to all four sub-array.

My Algo is Correct I have implemented on my friends PC. Complexity: each 4 comparisons can b used to deduce the total no of elements to one-fourth at its worst case.. So My complexity comes to be 1 + 4 x lg(n) + 4 But really expected this to be working on O(n)

I think something is wrong somewhere in my calculation of Complexity, please correct if so..

share|improve this answer

public boolean searchSortedMatrix(int arr[][] , int key , int minX , int maxX , int minY , int maxY){

    // base case for recursion
    if(minX > maxX || minY > maxY)
        return false ;
    // early fails
    // array not properly intialized
    if(arr==null || arr.length==0)
        return false ;
    // arr[0][0]> key return false
    if(arr[minX][minY]>key)
        return false ;
    // arr[maxX][maxY]<key return false
    if(arr[maxX][maxY]<key)
        return false ;
    //int temp1 = minX ;
    //int temp2 = minY ;
    int midX = (minX+maxX)/2 ;
    //if(temp1==midX){midX+=1 ;}
    int midY = (minY+maxY)/2 ;
    //if(temp2==midY){midY+=1 ;}


    // arr[midX][midY] = key ? then value found
    if(arr[midX][midY] == key)
        return true ;
    // alas ! i have to keep looking

    // arr[midX][midY] < key ? search right quad and bottom matrix ;
    if(arr[midX][midY] < key){
        if( searchSortedMatrix(arr ,key , minX,maxX , midY+1 , maxY))
            return true ;
        // search bottom half of matrix
        if( searchSortedMatrix(arr ,key , midX+1,maxX , minY , maxY))
            return true ;
    }
    // arr[midX][midY] > key ? search left quad matrix ;
    else {
         return(searchSortedMatrix(arr , key , minX,midX-1,minY,midY-1));
    }
    return false ;

}
share|improve this answer

Given a square matrix as follows:

[ a b c ]
[ d e f ]
[ i j k ]

We know that a < c, d < f, i < k. What we don't know is whether d < c or d > c, etc. We have guarantees only in 1-dimension.

Looking at the end elements (c,f,k), we can do a sort of filter: is N < c ? search() : next(). Thus, we have n iterations over the rows, with each row taking either O( log( n ) ) for binary search or O( 1 ) if filtered out.

Let me given an EXAMPLE where N = j,

1) Check row 1. j < c? (no, go next)

2) Check row 2. j < f? (yes, bin search gets nothing)

3) Check row 3. j < k? (yes, bin search finds it)

Try again with N = q,

1) Check row 1. q < c? (no, go next)

2) Check row 2. q < f? (no, go next)

3) Check row 3. q < k? (no, go next)

There is probably a better solution out there but this is easy to explain.. :)

share|improve this answer

As this is an interview question, it would seem to lead towards a discussion of Parallel programming and Map-reduce algorithms.

See http://code.google.com/intl/de/edu/parallel/mapreduce-tutorial.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.