题解 | #顺时针旋转矩阵#

顺时针旋转矩阵

https://www.nowcoder.com/practice/2e95333fbdd4451395066957e24909cc

#include <algorithm>
#include <vector>
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param mat int整型vector<vector<>> 
     * @param n int整型 
     * @return int整型vector<vector<>>
     */
    vector<vector<int> > rotateMatrix(vector<vector<int> >& mat, int n) {
        // write code here
        // 方法二:进阶,直接修改mat数组
        for(int i=0; i<n; ++i)
        {
            for(int j=0; j<i; ++j)
                swap(mat[i][j],mat[j][i]);
        }

        // 反转行
        for(int i=0; i<n; ++i)
            reverse(mat[i].begin(), mat[i].end());

        return mat;


        // 方法一:要求,行列转变,双重遍历
        // vector<vector<int>> ans(n, vector<int>(n,0));

        // for(int i=0; i<n; ++i)
        // {
        //     for(int j=0; j<n; ++j)
        //         ans[j][n-i-1] = mat[i][j];
        // }

        // return ans;
    }
};

虚数五行区解题中心 文章被收录于专栏

非淡泊无以明志,非宁静无以致远

全部评论

相关推荐

10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务