首页 > 代码库 > LeetCode:Rotate Image
LeetCode:Rotate Image
题目描述:
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?
思路:先将行顺序reverse,然后再对每个处于下三角区域的元素rotate。
代码:
void Solution::rotate(vector<vector<int> > &matrix) { reverse(matrix.begin(),matrix.end()); for(int i = 0;i < matrix.size();i++) for(int j = 0;j < matrix.size() - i;j++) { int temp = matrix[j][i]; matrix[j][i] = matrix[i][j]; matrix[i][j] = temp; } }
LeetCode:Rotate Image
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。