本文主要是介绍【程序员金典】像素翻转,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目描述
有一副由NxN矩阵表示的图像,这里每个像素用一个int表示,请编写一个算法,在不占用额外内存空间的情况下(即不使用缓存矩阵),将图像顺时针旋转90度。
给定一个NxN的矩阵,和矩阵的阶数N,请返回旋转后的NxN矩阵,保证N小于等于500,图像元素小于等于256。
测试样例:
[[1,2,3],[4,5,6],[7,8,9]],3
返回:[[7,4,1],[8,5,2],[9,6,3]]
class Transform {
public:vector<vector<int> > transformImage(vector<vector<int> > mat, int n) {// write code herefor(int layer=0;layer<n/2;layer++){int first=layer,last=n-1-layer;for(int i=first;i<last;i++){int offset=i-first;//上边int top=mat[first][i];//左到上mat[first][i]=mat[last-offset][first];//下到左mat[last-offset][first]=mat[last][last-offset];//右到下mat[last][last-offset]=mat[i][last];//上到右mat[i][last]=top;}}return mat;}
};
这篇关于【程序员金典】像素翻转的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!