【编程题】顺时针打印矩阵

本篇博文主要想讲一讲一道编程题,该题是我面试腾讯时,初始的面试官提出的,要求共享桌面、编辑器编写。

题目:编写一个算法,能够按照从外向里以顺时针的顺序依次输出二维数组中的每一个数字。

例如:

输入:
1 2 3
4 5 6
7 8 9

输出:
1 2 3 6 9 8 7 4 5

实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import java.util.ArrayList;
import java.util.List;

public class Solution {
// 防止实例化
private Solution() {}

// 顺时针打印矩阵
public static List<Integer> printMatrix(int[][] matrix) {
List<Integer> result = new ArrayList<>();

// 特殊输入的检查
if (matrix == null)
return result;

int row = matrix.length;
int col = matrix[0].length;

// 循环圈数
for (int i = 0; (i <= (row - 1) / 2) && (i <= (col - 1) / 2); i++) {
// 从左至右
for (int j = i; j < col - i; j++)
result.add(matrix[i][j]);
// 从上至下
for (int j = i + 1; j < row - i; j++)
result.add(matrix[j][col - i - 1]);
// 从右至左
if (i < row - i - 1)
for (int j = col - i - 2; j >= i; j--)
result.add(matrix[row - i - 1][j]);
// 从下至上
if (i < col - i - 1)
for (int j = row - i - 2; j >= i + 1; j--)
result.add(matrix[j][i]);
}

return result;
}

// 测试
public static void main(String[] args) {
int[][] a = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
// int[][] a = null;
// int[][] a = {{1, 2, 3}};
// int[][] a = {{1}, {2}, {3}};
// int[][] a = {{1}};
// int[][] a = {{1, 2}, {3, 4}, {5, 6}};
List<Integer> res = printMatrix(a);
for (int i: res) {
System.out.println(i);
}
}
}