剑指offer 顺时针打印矩阵

Posted --lr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer 顺时针打印矩阵相关的知识,希望对你有一定的参考价值。

输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字,例如,如果输入如下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.

 1 class Solution 
 2 public:
 3     vector<int> ans;
 4     int row,col;
 5     vector<int> printMatrix(vector<vector<int> > matrix) 
 6         
 7         row = matrix.size();
 8         col = matrix[0].size();
 9         int top = 0, bottom = row-1,left = 0,right = col-1;
10         while(top <= bottom && left <= right)
11             for(int i = left; i <= right; i++)
12                 ans.push_back(matrix[top][i]);
13             for(int i = top+1; i <= bottom; i++)
14                 ans.push_back(matrix[i][right]);
15             if(top < bottom)
16                 for(int i = right-1; i >= left; i--)
17                     ans.push_back(matrix[bottom][i]);
18             if(left < right)
19                 for(int i = bottom-1; i > top; i--)
20                     ans.push_back(matrix[i][left]);
21             left++,right--,top++,bottom--;
22         
23         return ans;
24     
25     
26 ;

 

以上是关于剑指offer 顺时针打印矩阵的主要内容,如果未能解决你的问题,请参考以下文章

剑指offer--29顺时针打印矩阵

剑指 Offer 29. 顺时针打印矩阵 的 详细题解

Java 剑指offer(29) 顺时针打印矩阵

剑指Offer打卡29.顺时针打印矩阵

剑指Offer打卡29.顺时针打印矩阵

剑指Offer打卡29.顺时针打印矩阵