public class test28 {
public static void rotate(int[][] matrix){
int a =0;
int b =0;
int c = matrix.length-1;
int d = matrix[0].length-1;
while (a < c){//由于是正方形,所以行越界列一定越界
rotateEdge(matrix , a++ , b++ , c-- ,d--);
}
}
public static void rotateEdge(int[][] m, int a, int b, int c,int d){
int tmp = 0;
for(int i =0 ; i < d-b ;i++){//有多少组次
//m[a][b+i]上面一组
//m[a+i][d]右边一组
//m[c][d-i]下面一组
//m[c-i][b]左边一组
//然后不断组与组变换解决
tmp = m[a][b+i];
m[a][b+i] = m[c-i][b];
m[c-i][b] = m[c][d-i];
m[c][d-i] = m[a+i][d];
m[a+i][d] =tmp;
}
}
}
原地旋转正方形矩阵
听风客12024-08-06 9:40
相关推荐
春日见5 分钟前
丝滑快速拓展随机树 S-RRT(Smoothly RRT)算法核心原理与完整流程Code小翊6 分钟前
”回调“高级云里雾里!11 分钟前
力扣 977. 有序数组的平方:双指针法的优雅解法ZHE|张恒41 分钟前
Spring Bean 生命周期q***38512 小时前
SpringCloud实战十三:Gateway之 Spring Cloud Gateway 动态路由小白学大数据3 小时前
Python爬虫伪装策略:如何模拟浏览器正常访问JSP站点一只侯子3 小时前
Face AE Tuningjianqiang.xue3 小时前
别把 Scratch 当 “动画玩具”!图形化编程是算法思维的最佳启蒙程序员西西4 小时前
SpringBoot接口安全:APIKey保护指南不许哈哈哈4 小时前
Python数据结构