행렬 이 모두 정렬 된 행렬 에서 수 [요구] 를 찾 습 니 다. 시간 복잡 도 는 O (N + M) 이 고 추가 공간 복잡 도 는 O (1) 입 니 다.

package class_03;

/**
 * 
 *              
	【  】      N*M     matrix     K,
 * matrix               。      ,  K
 *    matrix 。   : 0 1 2 5 2 3 4 7 4
 * 4 4 8 5 7 7 9   K 7,  true;  K 6, 
 *  false。
	【  】       O(N+M),        O(1)。
 *
 */
public class Code_09_FindNumInSortedMatrix {

	public static boolean isContains(int[][] matrix, int K) {
		int row = 0;
		int col = matrix[0].length - 1;
		while (row < matrix.length && col > -1) {
			if (matrix[row][col] == K) {
				return true;
			} else if (matrix[row][col] > K) {
				col--;
			} else {
				row++;
			}
		}
		return false;
	}

	public static void main(String[] args) {
		int[][] matrix = new int[][] { { 0, 1, 2, 3, 4, 5, 6 },// 0
				{ 10, 12, 13, 15, 16, 17, 18 },// 1
				{ 23, 24, 25, 26, 27, 28, 29 },// 2
				{ 44, 45, 46, 47, 48, 49, 50 },// 3
				{ 65, 66, 67, 68, 69, 70, 71 },// 4
				{ 96, 97, 98, 99, 100, 111, 122 },// 5
				{ 166, 176, 186, 187, 190, 195, 200 },// 6
				{ 233, 243, 321, 341, 356, 370, 380 } // 7
		};
		int K = 233;
		System.out.println(isContains(matrix, K));
	}

}

좋은 웹페이지 즐겨찾기