劍指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
相關文章
相關標籤/搜索