起始可以看出规律,我们可以先交换行列,然后翻转每一行。class Solution { public: vector<vector<int> > rotateMatrix(vector<vector<int> > mat, int n) { // //[1,2,3], [1 4 7] //[4,5,6], [2 5 8] //[7,8,9] [3 6 9] for(int i=0;i<n;i++) { ...