码迷,mamicode.com
首页 > 编程语言 > 详细

二位数组中的查找

时间:2019-11-06 00:30:55      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:amp   get   turn   solution   ++   false   code   pre   targe   

 1 public class Solution
 2     {
 3         public bool Find(int target, int[][] array)
 4         {
 5             if (array != null)
 6             {
 7                 int rowCnt = array.Length - 1;
 8                 int colCnt = array[0].Length - 1;
 9 
10                 int row = 0;
11                 int col = colCnt;
12 
13                 while (row <= rowCnt && col >= 0)
14                 {
15                     if (target == array[row][col])
16                     {
17                         return true;
18                     }
19                     else if (target < array[row][col])
20                     {
21                         col--;
22                     }
23                     else
24                     {
25                         row++;
26                     }
27                 }
28                 return false;
29             }
30 
31             return false;
32         }
33     }

 

二位数组中的查找

标签:amp   get   turn   solution   ++   false   code   pre   targe   

原文地址:https://www.cnblogs.com/xiaolongren/p/11802649.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!