1. 程式人生 > >劍指offer19---順時針列印矩陣

劍指offer19---順時針列印矩陣

輸入一個矩陣,按照從外向裡以順時針的順序依次打印出每一個數字,例如,如果輸入如下4 X 4矩陣: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 則依次打印出數字1,2,3,4,8,12,16,15,14,13,9,5,6,7,11,10.

package JZoffertest;

import java.util.ArrayList;

public class test19 {
	public ArrayList<Integer> printMatrix(int [][] matrix) {
		ArrayList<Integer> arrayList=new ArrayList<Integer>();
		int row=matrix.length;//行長度
		int col=matrix[0].length;//列長度
		if(row==0||col==0) return null;
		int left=0,top=0,bottom=row-1,right=col-1;
		while(left<=right&&top<=bottom) {
			for(int i=left;i<=right;i++) {
				arrayList.add(matrix[top][i]);
			}
			
			for(int j=top+1;j<=bottom;j++) {
				arrayList.add(matrix[j][right]);
			}
			
			//if(top!=bottom) {
				for(int t=right-1;t>=left;t--) {
					arrayList.add(matrix[bottom][t]);
				}
			//}
			//if(left != right)
	            for(int k = bottom-1;k>top;k--){
	            	arrayList.add(matrix[k][left]);
	            }
			
			 top++;left++;right--;bottom--;
		}
		return arrayList;
	       
    }
}