输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字.
class Solution {
private:
int n, m;
bool isValid(vector<vector<int> >& matrix, int x, int y){
if(x < 0 || x >= n || y < 0 || y >= m || matrix[x][y] == INT_MIN)
return 0;
return 1;
}
public:
vector<int> printMatrix(vector<vector<int> >& matrix) {
vector<int> res;
if(matrix.empty())
return res;
n = matrix.size();
m = matrix[0].size();
int x = 0;
int y = 0;
while(1){
bool flag = 0;
while(isValid(matrix, x, y))
res.push_back(matrix[x][y]), matrix[x][y] = INT_MIN, y++, flag = 1;
y--;
x++;
while(isValid(matrix, x, y))
res.push_back(matrix[x][y]), matrix[x][y] = INT_MIN, x++, flag = 1;
x--;
y--;
while(isValid(matrix, x, y))
res.push_back(matrix[x][y]), matrix[x][y] = INT_MIN, y--, flag = 1;
y++;
x--;
while(isValid(matrix, x, y))
res.push_back(matrix[x][y]), matrix[x][y] = INT_MIN, x--, flag = 1;
x++;
y++;
if(!flag)
return res;
}
}
};
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有