二维数组中的查找
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二维数组中的查找相关的知识,希望对你有一定的参考价值。
P38二维数组中的查找
1.题目:在一个二维数组中,每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序,请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。
例如找到数字7,返回true,如果查找该数组中没有的数则返回false
#define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h> #include<stdlib.h> #define bool int #define true 1 #define false 0 bool find_number(int* matrix, int rows, int columns, int number) { bool found = false; if(matrix != NULL && rows > 0 && columns > 0) { int row = 0; int column = columns - 1; while(row < rows && column >= 0) { if(matrix[row * columns + column] == number) { printf("row = %d\ncolumn = %d\n", row, column); return found = true; break; } else if(matrix[row * columns + column] > number) -- column; else ++ row; } } return found; } int main() { int matrix[][4]={{1,2,8,9},{2,4,9,12},{4,7,10,13},{6,8,11,15}}; bool result = find_number((int*)matrix,4,4,7); if (result == true) { printf("number existed\n"); } else printf("no find number\n"); printf("\n"); system("pause"); return 0; }
结果:
row = 2
column = 1
number existed
请按任意键继续. . .
以上是关于二维数组中的查找的主要内容,如果未能解决你的问题,请参考以下文章