首页 > 学院 > 开发设计 > 正文

LeetCode 48. Rotate Image

2019-11-14 09:24:26
字体:
来源:转载
供稿:网友

描述 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?

分析 首先想到,纯模拟,从外到内一圈一圈的转,但这个方法太慢。 如下图,首先沿着副对角线翻转一次,然后沿着水平中线翻转一次。 rotate image 或者,首先沿着水平中线翻转一次,然后沿着主对角线翻转一次。

代码

class Solution {public: void rotate(vector<vector<int>>& matrix) { const int n = matrix.size(); // 沿着水平中线翻转 for (int i = 0; i < n / 2; ++i) for (int j = 0; j < n; ++j) swap(matrix[i][j], matrix[n-i-1][j]); // 沿着主对角线翻转 for (int i = 0; i < n; ++i) for (int j = i+1; j < n; ++j) swap(matrix[i][j], matrix[j][i]); }};
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表