剑指offer之顺时针打印矩阵
程序员文章站
2022-07-12 09:37:12
...
1.题目描述
输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字,例如,如果输入如下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.
2.问题分析
因为是顺时针打印,所以每次我们打印矩阵最外围一圈,之后矩阵缩小一圈,重复上述过程,打印完毕。打印一圈的时候,需要分成4步:
- 顶行从左列到右列的值;
- 最右列从顶行 + 1到底行的值;
- 底行从右列 - 1到左列的值(底行需要大于顶行);
- 最左列从底行 - 1到顶行 + 1的值(左列需要大于右列)。
3.源代码
vector<int> printMatrix(vector<vector<int> > matrix) {
vector<int> res;
//行数
int rows = matrix.size();
if(rows == 0)
return res;
//列数
int cols = matrix[0].size();
if(cols == 0)
return res;
//定义一个矩阵的左,右,顶,底的值
int left = 0, top = 0, right = cols - 1, bottom = rows - 1;
while(left <= right && top <= bottom)
{
//top行从left到right的值保存到res
for(int x = left; x <= right; ++x)
res.push_back(matrix[top][x]);
//right列从top+1到bottom的值保存到res,
for(int y = top + 1; y <= bottom;++y)
res.push_back(matrix[y][right]);
//先判断该矩阵是否有两行
if(bottom > top)
{
for(int x = right - 1;x >= left; --x)
res.push_back(matrix[bottom][x]);
}
if(right > left)
{
for(int y = bottom - 1; y > top; --y)
res.push_back(matrix[y][left]);
}
++left;
++top;
--right;
--bottom;
}
return res;
}