1 class Solution { 2 public: 3 vector<int> printMatrix(vector<vector<int> > matrix) { 4 int Lx = 0, Ly = 0, Rx = matrix.size() - 1, Ry = matrix[0].size() - 1; 5 vector<int>res; 6 while (Lx <= Rx && Ly <= Ry) 7 { 8 if (Lx == Rx)//只有一行 9 for (int i = Ly; i <= Ry; ++i) 10 res.push_back(matrix[Lx][i]); 11 else if(Ly==Ry)//只有一列 12 for (int i = Lx; i <= Rx; ++i) 13 res.push_back(matrix[i][Ly]); 14 else 15 { 16 for (int i = Ly; i < Ry; ++i) 17 res.push_back(matrix[Lx][i]); 18 for (int i = Lx; i < Rx; ++i) 19 res.push_back(matrix[i][Ry]); 20 for (int i = Ry; i > Ly; --i) 21 res.push_back(matrix[Rx][i]); 22 for (int i = Rx; i > Lx; --i) 23 res.push_back(matrix[i][Ly]); 24 } 25 ++Lx, ++Ly; 26 --Rx, --Ry; 27 } 28 return res; 29 } 30 };
原文:https://www.cnblogs.com/zzw1024/p/11674319.html