Leetcode 48. 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?

分析

给定一个N*N的二维数组,求其顺时针旋转90度后的数组。
只要简单分析一下数字之间的对应关系即可。C代码如下已通过。

void rotate(int** matrix, int matrixRowSize, int matrixColSize) {
    int **ans=(int **)malloc(sizeof(int *)*matrixRowSize);
    for(int i=0;i

你可能感兴趣的:(Leetcode 48. Rotate Image)