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

顺时针旋转矩阵

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

C语言版本

/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param mat int整型二维数组 
 * @param matRowLen int mat数组行数
 * @param matColLen int* mat数组列数
 * @param n int整型 
 * @return int整型二维数组
 * @return int* returnSize 返回数组行数
 * @return int** returnColumnSizes 返回数组列数
 */

int** rotateMatrix(int** mat, int matRowLen, int* matColLen, int n, int* returnSize, int** returnColumnSizes ) {
    // write code here
    int** cmpMat = (int**)malloc(sizeof(int*)*matRowLen);

    for(int i = 0; i < matRowLen; i++){
        cmpMat[i] = (int*)malloc(sizeof(int)*matRowLen);
    }
    for(int i = 0; i < matRowLen; i++){
        for(int j = 0; j < matRowLen; j++){
            cmpMat[i][j] = mat[i][j];   //力扣这样写才能通过
        }
    }
    
    for(int i = 0; i < matRowLen; i++){
        for(int j = 0; j < matRowLen; j++){
            mat[j][matRowLen-i-1] = cmpMat[i][j];
            // printf("mat[%d][%d] = %d\r\n", j, matRowLen-i-1, cmpMat[i][j]);
        }       
    }
    *returnColumnSizes = matColLen;     //注意:这里传入地址均已赋值,不需要malloc
    *returnSize = matRowLen;            //直接将输入矩阵的行数据数组指针传递给返回行数据数组。
    return mat;
}

全部评论

相关推荐

鬼迹人途:你去投一投尚游游戏,服务器一面,第一个图算法,做完了给你一个策略题,你给出方案他就提出低概率问题,答不上当场给你挂
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务