剑指offer--面试题4:二维数组中的查找

#include <stdio.h> bool Find(int *matrix, int row, int col, int number) { bool found = false; if(matrix == NULL && row <= 0 && col <=0 ) found=false; for(int i=0,j=col-1;found==false
相关文章
相关标签/搜索