劍指offer--20.順時針列印陣列
阿新 • • 發佈:2019-02-08
輸入一個矩陣,按照從外向裡以順時針的順序依次打印出每一個數字,例如,如果輸入如下矩陣: 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.
class Solution {
public:
vector<int> printMatrix(vector<vector<int> > matrix) {
int rows=matrix.size();
int cols=matrix[0].size();
vector <int> res;
//if(rows==0||cols==0)
// return res;
int count=rows*cols;
int flag=0;
int start=0;
int endX=cols-1;
int endY=rows-1;
//迴圈退出的條件
while(cols>start*2&&rows>start*2)
{
//step1
for (int i=start;i<=endX;++i)
res.push_back(matrix[start][i]);
//step2;至少有兩行
if(start<endY)
{
for(int i=start+1;i<=endY;++i)
res.push_back(matrix[i][endX]);
}
//step3;至少兩行兩列
if (start<endY&&start<endX)
{
for(int i=endX-1;i>=start;--i)
res.push_back(matrix[endY][i]);
}
//step4;至少三行兩列
if(start<endY-1&&start<endX)
{
for(int i=endY-1;i>=start+1;--i)
res.push_back(matrix[i][start]);
}
endX--;
endY--;
start++;
}
return res;
}
};