题解 | #二维数组中的查找#

二维数组中的查找

http://www.nowcoder.com/practice/abc3fe2ce8e146608e868a70efebf62e

package org.example.test;

public class TwoDimArrayFindTest {
    public static void main(String[] args) {
        int[][] test = {{1, 2, 8, 9}, {2, 4, 9, 12}, {4, 7, 10, 13}, {6, 8, 11, 15}};
        System.out.println(find(10, test));
    }


    //从右边左,从上到下
    public static boolean find(int target, int[][] array) {
        int j = 0;
        for (int[] ary : array) {
            for (int value : ary) {
                if (ary[j] > target) {
                    j--;
                    if (j < 0) {
                        j=0;
                        break;
                    }
                } else if (ary[j] < target) {
                    j++;
                    if (j >= ary.length) {
                        j--;
                        break;
                    }
                } else {
                    return true;
                }
            }
        }
        return false;
    }
}

全部评论

相关推荐

03-07 13:32
门头沟学院 C++
D0cC:你是本科生吗,太厉害了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务