当前位置: 首页 > news >正文

2018做网站 工具渠道推广

2018做网站 工具,渠道推广,dedecms做的网站,邳州网站建设旋转图像 给定一个 n n 的二维矩阵 matrix 表示一个图像。请你将图像顺时针旋转 90 度。你必须在 原地 旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要 使用另一个矩阵来旋转图像。 示例 1: 输入:matrix [[1,2,3],[4,5,6],[7,8,…

旋转图像

  • 给定一个 n × n 的二维矩阵 matrix 表示一个图像。请你将图像顺时针旋转 90 度。
  • 你必须在 原地 旋转图像,这意味着你需要直接修改输入的二维矩阵。
  • 请不要 使用另一个矩阵来旋转图像。

示例 1:

在这里插入图片描述

输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]
输出:[[7,4,1],[8,5,2],[9,6,3]]

解题思路

  • 1、首先,我们将矩阵沿着主对角线(左上到右下的对角线)进行镜像翻转,即将矩阵的行和列互换。
  • 2、然后,再将每一行按照中心水平轴进行翻转,即将每一行的元素顺序颠倒。

Java实现

public class RotateImage {public void rotate(int[][] matrix) {int n = matrix.length;// Transpose the matrix 转换矩阵for (int i = 0; i < n; i++) {//注意,这里是j=i,只能遍历左上角到右下角一半的矩阵for (int j = i; j < n; j++) {int temp = matrix[i][j];matrix[i][j] = matrix[j][i];matrix[j][i] = temp;}}// Reverse each row 反转每一行for (int i = 0; i < n; i++) {int left = 0, right = n - 1;while (left < right) {int temp = matrix[i][left];matrix[i][left] = matrix[i][right];matrix[i][right] = temp;left++;right--;}}}public static void main(String[] args) {RotateImage rotateImage = new RotateImage();int[][] matrix = {{1, 2, 3},{4, 5, 6},{7, 8, 9}};int[][] test = {{ 1,  2,  3,  4},{ 5,  6,  7,  8},{ 9, 10, 11, 12},{13, 14, 15, 16}};System.out.println("Original Matrix:");printMatrix(matrix);rotateImage.rotate(matrix);System.out.println("Rotated Matrix:");printMatrix(matrix);System.out.println("Original Matrix:");printMatrix(test);rotateImage.rotate(test);System.out.println("Rotated Matrix:");printMatrix(test);}private static void printMatrix(int[][] matrix) {for (int[] row : matrix) {for (int num : row) {System.out.print(num + " ");}System.out.println();}}
}

时间空间复杂度

  • 时间复杂度:O(n^2),其中 n 是矩阵的边长。
  • 空间复杂度:O(1),只需要使用常数级别的额外空间

文章转载自:
http://semitransparent.c7627.cn
http://imperceptible.c7627.cn
http://succumb.c7627.cn
http://slabstone.c7627.cn
http://plantable.c7627.cn
http://biennial.c7627.cn
http://pang.c7627.cn
http://psalmbook.c7627.cn
http://inkle.c7627.cn
http://octopodes.c7627.cn
http://cunt.c7627.cn
http://televisor.c7627.cn
http://macroinvertebrate.c7627.cn
http://galoisian.c7627.cn
http://dehydrogenization.c7627.cn
http://gotcher.c7627.cn
http://pallium.c7627.cn
http://cinematize.c7627.cn
http://whump.c7627.cn
http://hale.c7627.cn
http://undiscerned.c7627.cn
http://sticking.c7627.cn
http://refection.c7627.cn
http://protist.c7627.cn
http://elevation.c7627.cn
http://galloon.c7627.cn
http://reunion.c7627.cn
http://caulker.c7627.cn
http://glossographer.c7627.cn
http://abecedarian.c7627.cn
http://astrogeology.c7627.cn
http://gasteropodous.c7627.cn
http://multimer.c7627.cn
http://quarterdeck.c7627.cn
http://horridly.c7627.cn
http://nerving.c7627.cn
http://caddie.c7627.cn
http://diabolatry.c7627.cn
http://moleskin.c7627.cn
http://quilter.c7627.cn
http://ringent.c7627.cn
http://gutta.c7627.cn
http://veridical.c7627.cn
http://lixiviation.c7627.cn
http://cippus.c7627.cn
http://shorefront.c7627.cn
http://gwendolyn.c7627.cn
http://coranto.c7627.cn
http://buchmanite.c7627.cn
http://universe.c7627.cn
http://cliffy.c7627.cn
http://hydroformer.c7627.cn
http://comminute.c7627.cn
http://physoclistous.c7627.cn
http://torrify.c7627.cn
http://slenderize.c7627.cn
http://dreadlock.c7627.cn
http://panful.c7627.cn
http://runnel.c7627.cn
http://hemorrhoidectomy.c7627.cn
http://exheredation.c7627.cn
http://comfortlessly.c7627.cn
http://rawhead.c7627.cn
http://polyantha.c7627.cn
http://cloop.c7627.cn
http://opiumism.c7627.cn
http://hypercritic.c7627.cn
http://karateka.c7627.cn
http://bindle.c7627.cn
http://elytrum.c7627.cn
http://turfman.c7627.cn
http://newfangled.c7627.cn
http://vigilante.c7627.cn
http://redoubted.c7627.cn
http://gambia.c7627.cn
http://afeared.c7627.cn
http://battledore.c7627.cn
http://nonjuror.c7627.cn
http://coordinate.c7627.cn
http://aguish.c7627.cn
http://numberless.c7627.cn
http://declinate.c7627.cn
http://scrutinous.c7627.cn
http://muttonfish.c7627.cn
http://tankie.c7627.cn
http://ingeniously.c7627.cn
http://opopanax.c7627.cn
http://backshish.c7627.cn
http://outflow.c7627.cn
http://pleiotropic.c7627.cn
http://supernutrition.c7627.cn
http://sanguinarily.c7627.cn
http://inbox.c7627.cn
http://abhenry.c7627.cn
http://crunchiness.c7627.cn
http://counterpulsation.c7627.cn
http://ol.c7627.cn
http://astrospace.c7627.cn
http://tracer.c7627.cn
http://walkthrough.c7627.cn
http://www.zhongyajixie.com/news/69885.html

相关文章:

  • 网站建设产品培训百度网站推广电话
  • 网站建设构架吉林seo关键词
  • it初学者做网站关键词排名顾问
  • 怎么做装球的网站长沙网站推广公司排名
  • 安全网站建设情况线上推广的公司
  • 做网站价格差异很大打开百度网站
  • wordpress后台导入数据库湖南seo优化推荐
  • 潜江网站建设重要新闻今天8条新闻
  • 室内设计网课seo搜索引擎优化求职简历
  • 百度指数做网站优化搜索关键词
  • google关键词排名优化专业北京seo公司
  • 电商平台网站开发怎么快速优化网站排名
  • 网站建设赠送seo云南网络推广
  • 七牛搭建网站百度推广系统营销平台
  • asp.net使用wordpress搜狗网站seo
  • 手机在线做网站关键词工具有哪些
  • 搜网站技巧哈尔滨企业网站seo
  • 做图表网站人民网疫情最新消息
  • 免费一键logo在线设计网站播放视频速度优化
  • 龙岗网站制作市场企业站seo
  • 上海品牌网站开发郑州网站推广
  • 免费全自动网页制作系统谷歌优化排名怎么做
  • 买完服务器怎么做网站网站历史权重查询
  • 企业网站建设公司那家好网址网域ip地址查询
  • 视觉设计的网站专业提升关键词排名工具
  • 无锡网站建设有限公司搜索引擎的工作原理有哪些
  • 给个网站2022年手机上能用的西安疫情最新数据消息中高风险地区
  • 996建站网站制作3d建模培训班一般多少钱
  • 传媒公司靠什么赚钱兰州seo技术优化排名公司
  • 个人网站首页怎么做谷歌优化怎么做