二维有序数组查找一个数

#include <iostream> #include <cstdio> using namespace std; string search(int a[][1000], int m, int n, int key) {     int i = 0;     int j = n - 1;     while(i < m && j >= 0)     {         if (a[i][j]
相关文章
相关标签/搜索