【算法与数据结构】59、LeetCode螺旋矩阵2

news/2024/11/7 9:29:34/

文章目录

  • 题目
  • 一、方向向量法
  • 完整代码

所有的LeetCode题解索引,可以看这篇文章——【算法和数据结构】LeetCode题解。

题目

在这里插入图片描述

一、方向向量法

  思路分析:螺旋矩阵在旋转过程中,我们选择的区间是左闭右开区间[ , ],例如方向为从左往右赋值时,从(0,0)赋值到(0,n-1),然后调转方向,赋值(1,n-1)到(n-1,n-1) 。简单示意图如下:
在这里插入图片描述

  分析矩阵变换的增量delta_x和delta_y,这两个变量以右下左上的顺序变化时,其值依次为:{{0,1},{1,0},{0,-1},{-1,0}}。那么我们发现delta_x = delta_y, delta_y = - delta_x。那么我们再引入一个临时变量用来交换。然后就是程序边界问题,程序当中使用if语句,res下一个

  程序如下

class Solution {
public:// 方向向量法vector<vector<int>> generateMatrix(int n) {vector<vector<int>> res(n, vector<int>(n, 0));  // vector(n, ele)使用两次,就构造处一个嵌套vector矩阵int delta_x = 0, delta_y = 1;int x = 0, y = 0;for (int i = 1; i <= n * n; i++) {res[x][y] = i;if (res[(x + delta_x + n) % n][(y + delta_y + n) % n] != 0) { // 判断是否转弯,当dy为-1会造成 y+dy < 0,数组越界,加n是为了防止这个问题int tmp = delta_y;delta_y = -delta_x;delta_x = tmp;}x += delta_x;y += delta_y;}return res;}
};

复杂度分析:

  • 时间复杂度: O ( n 2 ) O(n^2) O(n2),遍历 n 2 n^2 n2遍。
  • 空间复杂度: O ( 1 ) O(1) O(1)

完整代码

# include<iostream>
# include <vector>
using namespace std;class Solution {
public:// 方向向量法vector<vector<int>> generateMatrix(int n) {vector<vector<int>> res(n, vector<int>(n, 0));  // vector(n, ele)使用两次,就构造处一个嵌套vector矩阵int delta_x = 0, delta_y = 1;int x = 0, y = 0;for (int i = 1; i <= n * n; i++) {res[x][y] = i;if (res[(x + delta_x + n) % n][(y + delta_y + n) % n] != 0) { // 判断是否转弯,当dy为-1会造成 y+dy < 0,数组越界,加n是为了防止这个问题int tmp = delta_y;delta_y = -delta_x;delta_x = tmp;}x += delta_x;y += delta_y;}return res;}
};void my_print(vector<vector<int>>nums, int n, string str) {cout << str << endl;for (vector<vector<int>>::iterator it = nums.begin(); it < nums.end(); it++) {for (vector<int>::iterator vit = (*it).begin(); vit < (*it).end(); vit++) {cout << *vit << ' ';}	cout << endl;}cout << endl;
}int main()
{int n = 3;Solution s1;vector<vector<int>>matrix = s1.generateMatrix(n);my_print(matrix, n, "生成的矩阵:");system("pause");return 0;
}

end


http://www.ppmy.cn/news/271744.html

相关文章

主板开启虚拟服务器,华硕主板进入bios后怎么开启VT虚拟化技术选项?

主板bios设置中VT虚拟化技术选项怎么开启&#xff0c;太多人问到怎么开启intel Virtualization Technology选项&#xff0c;下面小编就为大家介绍一下&#xff0c;一起来看看吧! 工具/原料 华硕Asus P8H61-M LX Plus主板 英特尔Intel Core™ i3-2120处理器 方法/步骤 1、首先到…

CS61A hw04

这道题目比较有代表性&#xff0c;recursive function是解题的关键 Question 6 Write a function has_path that takes in a tree t and a string word. It returns True if there is a path that starts from the root where the entries along the path spell out the word, …

About P6

P6 P6是原是美国Primavera System Inc.公司研发的项目管理软件Primavera 6.0&#xff08;2007年7月1日全球正式发布&#xff09;的缩写&#xff0c;暨Primavera公司项目管理系列软件的最新注册商标&#xff0c;与2008年被ORACLE公司收购&#xff0c;对外统一称作 Oracle Primav…

TB6600HG原理图

PWM 斩波型双极步进电机驱动 IC TB6600HG 是 PWM 斩波型单芯片双极正弦微步步进马达驱动器。 可通过 2-相&#xff0c;1-2-相&#xff0c;W1-2-相&#xff0c;2W1-2-相&#xff0c;和 4W1-2-相励磁模式&#xff0c;实现正向和反向旋转控制。 2-相双极步进马达仅由低振动高效…

折腾BIOS,改开机logo图标

友情提示&#xff1a;刷机有风险&#xff0c;烧录需谨慎。折腾这个不像装系统&#xff0c;一旦刷失败了电脑就会变砖&#xff0c;救砖很难。我刷成功不代表在大家的主板上就能成功&#xff0c;刷废主板后果自负。 获取BIOS文件 下载 从各个厂商的官网上下载的BIOS各不相同&a…

cs61a pp+ch. 1.1-1.2+HW01

ppch. 1.1-1.2HW01 PP expressions:An expression describes a computation and evaluates to a value call expressions: function call notation (函数调用表达式) nested expressions:嵌套表达式 Discussion Question1 f min f max g, h min, max max g max(f(2,g(…

P8H61 换 CPU,升级 BIOS,IDE 转 AHCI

简述 最近把家里服役了10年的 华硕P8H61 i3-2100 进行了一次升级&#xff08;内存早已经加到了12G了&#xff09; 升级CPU 首先上淘宝买了个 E3-1230V2&#xff0c;&#xffe5;260&#xff08;i3-2100 淘宝158&#xff0c;我140包邮卖了&#xff09; 如果是比较早的 BIOS …

Linux线程的同步与互斥(二) 条件变量+信号量

文章目录 二、线程同步条件变量1、条件变量的概念2、同步概念与竞态条件3、条件变量函数初始化4、条件变量函数销毁5、条件变量函数等待6、条件变量函数唤醒等待生产者消费者模型1、理论部分2、“3 2 1”原则3、基于阻塞队列的生产者消费者模型 POSIX信号量1、信号量的概念2、信…