码迷,mamicode.com
首页 > 编程语言 > 详细

《剑指Offer》算法题——二维数组查找

时间:2016-03-31 18:21:01      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:

题目:在一个二维数组中,每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。

class Solution {
public:
    bool Find(vector<vector<int> > array, int target) {
        int col = array.size();
        int i = 0;
        while (i < col)
        {
            int j = array[i].size()-1;//考虑边界条件
            if (j<0)
                continue;
            if (target == array[i][j])
            {
                return 1;
            }
            else if (array[i][j] > target)
            {
                while (j > 0)
                {
                    if (target == array[i][j])
                    {
                        return 1;
                    }
                    j--;
                }
            }
            i++;
        }
        return 0;
    }
};

当我们运行时,需要测试边界条件:

技术分享

如果没考虑到这里,就会向下越界。该算法可以运行,但是这个算法超时:

技术分享

改进后算法如下:

class Solution {
public:
    bool Find(vector<vector<int> > array, int target) {
        int row = array.size();
        int col = 0;
        int totalcol = array[0].size();
        if (0 == row)
            return 0;
        row--;
        while (row >= 0 && col<totalcol)
        {
            if (target < array[row][col])
                row--;
            else if (target > array[row][col])
                col++;
            else
                return 1;
        }
        return 0;
    }
};

运行通过:

技术分享

 

《剑指Offer》算法题——二维数组查找

标签:

原文地址:http://www.cnblogs.com/predator-wang/p/5341940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!