//★题目:在行和列都排好序的矩阵中找数
//要求:给定一个有N×M的整型矩阵matrix和一个整数K,matrix的每一行每一列都是排好序的。
// 实现一个函数,判断K是否在matrix中。要求时间复杂度为O(N+M),空间复杂度为O(1)
// 例如:0 1 2 5
// 2 3 4 7
// 4 4 4 8
// 5 7 7 9
// 如果K = 7,返回true;如果K = 6,返回false。
#include <iostream>
#include <vector>
using namespace std;
bool isContains(vector<vector<int>> matrix, int k);
void printVector2(vector<vector<int>> matrix);
vector<vector<int>> generateDesignated2Vector(int *arr, int setCols, int setRows);//生成二维矩阵
int main()
{
//int *arr = new int[10];
int arrayMine[16] = { 0, 1, 2, 5, 2, 3, 4, 7, 4, 4, 4, 8, 5, 7, 7, 9 };
int *arr = arrayMine;
vector<vector<int>> matrix = generateDesignated2Vector(arr, 4, 4);
printVector2(matrix);
cout << endl;
int testNum = 7;
bool isConatain = isContains(ma
数组与矩阵:在行和列都排好序的矩阵中找数
最新推荐文章于 2019-09-02 15:41:59 发布
这篇博客探讨了如何在已按行和列排序的矩阵中有效地寻找目标数值。通过利用矩阵的有序特性,可以使用二分查找算法显著提高搜索效率。文章详细解释了实现过程,并可能涉及矩阵遍历策略和算法优化。
摘要由CSDN通过智能技术生成