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

java实现——003二维数组中的查找

时间:2014-05-08 11:24:26      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   ext   

bubuko.com,布布扣
 1 import java.util.Scanner;
 2 
 3 public class T003 {
 4 
 5     public static void main(String[] args) {
 6         Scanner in = new Scanner(System.in);
 7         int rows = 0, cols = 0;
 8         rows = in.nextInt();
 9         cols = in.nextInt();
10         int a[][] = new int[rows][cols];
11         for (int i = 0; i < rows; i++) {
12             for (int j = 0; j < cols; j++) {
13                 a[i][j] = in.nextInt();
14             }
15         }
16         System.out.println(find(a, rows, cols, 7));
17     }
18 
19     public static boolean find(int a[][], int rows, int cols, int f) {
20         boolean found = false;
21         int row = 0;
22         int col = cols - 1;
23         while (row < rows && col >= 0) {
24             if (a[row][col] == f) {
25                 found = true;
26                 break;
27             } else if (a[row][col] > f) {
28                 --col;
29             } else {
30                 ++row;
31             }
32         }
33         return found;
34     }
35 }
bubuko.com,布布扣

 

java实现——003二维数组中的查找,布布扣,bubuko.com

java实现——003二维数组中的查找

标签:style   blog   class   code   java   ext   

原文地址:http://www.cnblogs.com/thehappyyouth/p/3714469.html

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