首页 > 代码库 > Rotate Image <leetcode>
Rotate Image <leetcode>
You are given an n x n 2D matrix representing an image.
Rotate the image by 90 degrees (clockwise).
Follow up:
Could you do this in-place?
思路:首先左右翻转,然后按照左下,右上对角线翻转,代码如下:
1 class Solution { 2 public: 3 void rotate(vector<vector<int> > &matrix) { 4 int n=matrix.size(); 5 if(n==1) return; 6 for(int i=0;i<n;i++) 7 { 8 for(int j=0;j<n/2;j++) 9 {10 swap(matrix[i][j],matrix[i][n-j-1]);11 12 }13 }14 for(int i=0;i<n;i++)15 {16 for(int j=0;j<n-i;j++)17 {18 swap(matrix[i][j],matrix[n-j-1][n-i-1]);19 }20 }21 }22 };
Rotate Image <leetcode>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。