【算法与数据结构】206、LeetCode 反转链表

news/2024/12/4 20:19:38/

文章目录

  • 一、题目
  • 二、翻转链表双指针法
  • 三、完整代码

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

一、题目

在这里插入图片描述

在这里插入图片描述

二、翻转链表双指针法

  思路分析:代码首先进行头结点合法性判断,如果是空链表或者仅有一个节点的链表都不需要翻转,直接返回。一共定义了三个节点指针变量,cur指针指向当前节点,pre指针指向翻转后的头结点,tmp指针用作保存原始指针头结点。首先tmp指针要指向cur指针的下一个节点,保证要翻转的链表不会丢失,然后cur指针指向pre,这一步就是改变链表的方向了。然后更新pre,cur指针,不断循环。
  程序如下

class Solution {
public:ListNode* reverseList(ListNode* head) {if (head == NULL) return head;ListNode* cur = head;ListNode* pre = NULL;ListNode* tmp = NULL;while (cur) {tmp = cur->next;cur->next = pre;pre = cur;cur = tmp;}return pre;}
};

复杂度分析:

  • 时间复杂度: O ( n ) O(n) O(n)
  • 空间复杂度: O ( 1 ) O(1) O(1)

三、完整代码

# include <iostream>
using namespace std;struct ListNode {int val;ListNode* next;ListNode() : val(0), next(nullptr) {}ListNode(int x) : val(x), next(nullptr) {}ListNode(int x, ListNode* next) : val(x), next(next) {}
};class Solution {
public:ListNode* reverseList(ListNode* head) {if (head == NULL) return head;ListNode* cur = head;ListNode* pre = NULL;ListNode* tmp = NULL;while (cur) {tmp = cur->next;cur->next = pre;pre = cur;cur = tmp;}return pre;}
};ListNode* ChainGenerator(int arr[], int len) {ListNode* head = new ListNode(arr[0], NULL);ListNode* p = head;for (int i = 1; i < len; i++) {ListNode* pNewNode = new ListNode(arr[i], NULL);p->next = pNewNode; // 上一个节点指向这个新建立的节点p = pNewNode; // p节点指向这个新的节点}return head;
}void my_print(ListNode* head, string str) {cout << str << endl;ListNode* cur = head;while (cur != NULL) {cout << cur->val << ' ';if (cur->next == NULL) break;cur = cur->next;}cout << endl;
}int main()
{int arr[] = { 1,2,3,4 };//int arr[] = { 1 };int len = sizeof(arr) / sizeof(int);Solution s1;ListNode* head = ChainGenerator(arr, len);my_print(head, "目标链表:");head = s1.reverseList(head);my_print(head, "翻转后的链表:");system("pause");return 0;
}

end


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

相关文章

.msi文件安装报错

.msi文件安装报错一般是因为安装权限不够&#xff0c;但右键.msi文件没有以管理员权限运行&#xff0c;所以需要用命令提示符来操作。 打开命令提示符管理员——H:\工具软件\iplat>msiexec /package "OPC Core Components 2.00 SDK 2.20.msi" 命令格式为msiexec /…

windows11安装msi文件的方法

windows11安装msi文件的方法 一.开启Windows Installer服务 1.windowsR&#xff0c;输入services.msc 2.启动Windows Installer 二.安装msi 1.以管理员身份运行命令提示符 2.类比以下命令安装msi

msi和exe安装文件有什么区别

在Windows上安装软件的时候&#xff0c;一般有两种方式&#xff1a; Windows安装包&#xff08;.msi&#xff09;Windows二进制文件&#xff08;.exe&#xff09; 这两种安装方式的区别如下&#xff1a; .exe是一个安装引导程序。它是安装工程通过MSBuild创建的&#xff0c;…

win系统如何运行msi后缀文件

win系统如果运行msi后缀文件 1、用管理员运行命令行&#xff1a;输入&#xff1a;msiexec /package 文件路径及名称 案例&#xff1a;msiexec /package d:/program-zip.msi

MSI和MSI-X区别

MSI(Message Signaled Interrupts)是一种通过在内存中写入信息来产生中断的方式&#xff0c;其中内存地址由设备驱动程序和硬件设备协商确定。MSI与传统的中断线不同&#xff0c;它不需要单独的中断线&#xff0c;而是通过PCI总线进行通信。 MSI-X(Extended Message Signaled I…

Windows电脑无法识别msi文件,无法安装msi文件解决办法

Windows电脑无法识别msi文件&#xff0c;无法安装msi文件 虽然网上说了很多种原因&#xff0c;但是下面这种方法更加实用 解决办法&#xff1a; 首先通过文件浏览器进入到该目录的CMD窗口下&#xff1a; msiexec /i xxx.msi&#xff08;xxx.msi代表要安装的msi文件名称&#…

msi文件是什么

MSI文件是Windows Installer的数据包&#xff0c;它实际上是一个数据库&#xff0c;包含安装一种产品所需要的信息和在很多安装情形下安装&#xff08;和 卸载&#xff09;程序所需的指令和数据。MSI文件将程序的组成文件与功能关联起来。此外&#xff0c;它还包含有关安装过程…

.msi文件和.exe文件的区别

二者都可以用来安装应用程序&#xff0c;区别如下&#xff1a; MSI就是microsoft installer的简写&#xff0c;msi文件就是window installer的数据包&#xff0c;把所有和安装文件相关&#xff08;即下文说的windows installer的功能&#xff09;的内容封装在一个包里。 Windo…