标签:for public mat class 简单 线性 cto loading 思路
原地交换:class Solution {
public:
void rotate(vector<vector<int>>& matrix) {
int n = matrix.size();
for(int i = 0; i < n; ++i) {
for(int j = i + 1; j < n; ++j) {
swap(matrix[i][j], matrix[j][i]);
}
}
for(int i = 0; i < n; ++i) {
for(int j = 0; j < n / 2; ++j) {
swap(matrix[i][j], matrix[i][n - 1 - j]);
}
}
}
};
标签:for public mat class 简单 线性 cto loading 思路
原文地址:https://www.cnblogs.com/lightac/p/14159940.html