leetcode链表刷题总结

news/2024/11/29 20:47:45/

文章目录

    • 一. 链表的定义
    • 二. 删除元素
      • 203. 移除链表元素
    • 二. 反/翻转链表
      • T206.反转链表
      • 25. K 个一组翻转链表 ****
    • 四. 链表中的环
      • T142.环形链表Ⅱ
      • 02.07/T160 链表相交
    • 五. 合并链表
      • T23. 合并K个升序链表
    • 六. 交换链表
      • T24.两两交换链表的节点
      • T143. 重排链表
    • 七. 设计链表
      • T707.设计链表

一. 链表的定义

public class ListNode {// 结点的值int val;// 下一个结点ListNode next;// 节点的构造函数(无参)public ListNode() {}// 节点的构造函数(有一个参数)public ListNode(int val) {this.val = val;}// 节点的构造函数(有两个参数)public ListNode(int val, ListNode next) {this.val = val;this.next = next;}
}

在这里插入图片描述

二. 删除元素

203. 移除链表元素

在这里插入图片描述

  1. 虚拟结点 指向头节点
  2. 双指针
class Solution {public ListNode removeElements(ListNode head, int val) {if (head == null){return null;}ListNode dummyHead = new ListNode(-1,head);ListNode fast = head; //每个元素都遍历ListNode slow = dummyHead;while(fast != null){if (fast.val == val){slow.next = fast.next;}else{slow = fast;}fast = fast.next;}return dummyHead.next;}
}

二. 反/翻转链表

T206.反转链表

在这里插入图片描述
双指针

class Solution {public ListNode reverseList(ListNode head) {ListNode pre = null;ListNode cur = head;ListNode temp = null;while (cur != null){temp = cur.next;cur.next = pre;pre = cur;cur = temp;}return pre;}
}

25. K 个一组翻转链表 ****

在这里插入图片描述

  • 思路分析
    在这里插入图片描述
  • 代码实现
/*** Definition for singly-linked list.* public class ListNode {*     int val;*     ListNode next;*     ListNode() {}*     ListNode(int val) { this.val = val; }*     ListNode(int val, ListNode next) { this.val = val; this.next = next; }* }*/
class Solution {public ListNode reverseKGroup(ListNode head, int k) {ListNode dummyNode = new ListNode(-1);dummyNode.next = head;ListNode prev = dummyNode;//指向start的前一个ListNode end = dummyNode;//指向反转的最后一个while(end.next!=null){for(int i=0;i<k&&end!=null;i++){end = end.next;}if(end==null) break;//终止条件ListNode start = prev.next;//反转的第一个元素ListNode next = end.next;//指向末尾的下一个元素,用于反转后的拼接//反转end.next = null;//先把该部分断开prev.next = reverse(start);//反转后的拼接处理start.next = next;prev = start;end = prev;}return dummyNode.next;}public ListNode reverse(ListNode head){ListNode prev = null;ListNode cur = head;ListNode temp = null;//保留下一个指向的元素while(cur!=null){temp = cur.next;cur.next = prev;prev = cur;cur = temp;}return prev;}
}

四. 链表中的环

T142.环形链表Ⅱ

在这里插入图片描述

  1. 判断是否有环:双指针,快指针一步走两个节点,慢指针一步走一个节点,若相等必然有环:
  2. 如何找环:从头结点出发一个指针,从相遇节点 也出发一个指针,这两个指针每次只走一个节点, 那么当这两个指针相遇的时候就是 环形入口的节点。
public class Solution {public ListNode detectCycle(ListNode head) {ListNode slow = head;ListNode fast = head;while (fast != null && fast.next != null){slow = slow.next;fast = fast.next.next;//若有环必然相遇if (slow == fast) {//相遇,找入口 让一个节点从相遇处出发 一个从头节点出发ListNode cur = fast;ListNode prev = head;while(cur != prev){cur = cur.next;prev = prev.next;}return cur;}}return null;}
}

02.07/T160 链表相交

在这里插入图片描述

  • 方法一:利用AB两个链表的长度差
public class Solution {public ListNode getIntersectionNode(ListNode headA, ListNode headB) {ListNode curA = headA;ListNode curB = headB;int lengthA = 0;int lengthB = 0;while (curA != null){lengthA ++ ;curA = curA.next;}while (curB != null){lengthB++;curB = curB.next;}curA = headA;curB = headB;if (lengthB > lengthA){int  temp = lengthA;lengthA = lengthB;lengthB = temp;ListNode tempNode = curA;curA = curB;curB = tempNode;}        //交换使A长度始终最长int gap = lengthA - lengthB;while (gap>0){curA = curA.next;gap--;}//让A指针先走while(curA != null){if (curA == curB){return curA;}curA = curA.next;curB = curB.next;}return null;}
}
  • 方法二:利用双指针,较巧妙
    在这里插入图片描述
public class Solution {public ListNode getIntersectionNode(ListNode headA, ListNode headB) {if(headA == null || headB == null){return null;}ListNode curA = headA;ListNode curB = headB;while(curA!=curB){curA =  curA!=null ? curA.next : headB;curB =  curB!=null ? curB.next : headA;}return curA;}
}

五. 合并链表

T23. 合并K个升序链表

在这里插入图片描述

/*** Definition for singly-linked list.* public class ListNode {*     int val;*     ListNode next;*     ListNode() {}*     ListNode(int val) { this.val = val; }*     ListNode(int val, ListNode next) { this.val = val; this.next = next; }* }*/
class Solution {
//合并两个public ListNode mergeKLists(ListNode[] lists) {ListNode res = null;for(int i = 0;i<lists.length;i++){res = mergeTwoList(res,lists[i]);}return res;}   public ListNode mergeTwoList(ListNode a,ListNode b){if(a==null||b==null){return a!=null ? a:b;//出现空的 就返回非空}ListNode dummy = new ListNode(-1);ListNode cur = dummy;ListNode pointA = a;ListNode pointB = b;while(pointA!=null&&pointB!=null){if(pointA.val>pointB.val){cur.next = pointB;pointB = pointB.next;}else{cur.next = pointA;pointA = pointA.next;}cur = cur.next;}//可能还有剩下的cur.next = pointA != null?pointA:pointB;return dummy.next;}
}

六. 交换链表

T24.两两交换链表的节点

在这里插入图片描述
画图分析:记住pre为虚拟节点 1号为head 2号为head.next,按三部走即可
在这里插入图片描述

class Solution {public ListNode swapPairs(ListNode head) {ListNode dummyNode = new ListNode(-1);dummyNode.next = head;ListNode prev = dummyNode;while (prev.next != null && prev.next.next != null){//head为1号节点ListNode temp = head.next.next;   prev.next = head.next; head.next.next = head; head.next = temp;prev = prev.next.next;head = temp;}return dummyNode.next;}
}

T143. 重排链表

在这里插入图片描述

class Solution {public void reorderList(ListNode head) {int len=0;ListNode cur = head;//将所有节点入栈,并记录长度Deque<ListNode> stack = new LinkedList<>();while(cur!=null){stack.push(cur);cur = cur.next;len++;}int count = len/2;ListNode front = head;//第一个指针从前往后遍历,按照题目的意思只需要len/2次操作//第二个指针不断从栈中弹出元素while(count>0){ListNode node = stack.pop();ListNode temp = front.next;front.next = node;node.next = temp;front = temp;count--;}//最后的元素必须指向空,否则会出现环front.next = null;}
}

七. 设计链表

T707.设计链表

在这里插入图片描述

  1. 查:for循环遍历
  2. 增:头、尾、任意位置,头尾在任意位置的基础上修改 (本质就是查询,然后插入)
  3. 删: 查询后删除 无论是删除还是插入,引入一个tempNode记录节点
class ListNode{ //定义类 两个属性 一个构造方法int val;ListNode next;// ListNode (){}ListNode(int val){this.val = val;}
}//获取第index个节点的数值,注意index是从0开始的,第0个节点就是头结点
//其实就是在遍历的基础上做点操作
class MyLinkedList {int size;ListNode head;//初始化public MyLinkedList() {size = 0;head = new ListNode(0);}//查询 public int get(int index) {if (index < 0 || index >= size){return -1;}ListNode cur = head;for (int i = 0;i<=index;i++){ //注意等号cur = cur.next;}return cur.val;}//添加头节点public void addAtHead(int val) {addAtIndex(0,val);}public void addAtTail(int val) {addAtIndex(size,val);}//增加元素public void addAtIndex(int index, int val) {if (index > size){return;}if (index < 0){index=0;}ListNode newNode = new ListNode(val);size++;//调整size//找到第index-1个节点,用temp变量记录ListNode temp = head;for (int i = 0;i<index;i++){temp = temp.next;}// 改动 newNode.next = temp.next;temp.next = newNode;}//删除public void deleteAtIndex(int index) {if (index >= size || size < 0){return;}size--;if (index == 0){head = head.next;return;}ListNode temp = head;for (int i = 0; i<index;i++){temp = temp.next;}temp.next = temp.next.next;}
}

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

相关文章

全志T7平台上移植WiFi RTL8188EUS

T7平台上移植WiFi RTL8188EUS 需求 在T7平台上移植wifi驱动模块RTL8818EUS&#xff0c;工作模式为AP模式&#xff0c;即RTL8818EUS模块当作WIFI热点来使用&#xff0c;便于其他设备连接进去&#xff0c;实现基于无线网络通信的功能。 硬件平台 开发板&#xff1a;T707开发板…

Three.js入门教程:使用代码实现引入模型的例子

Three.js是一款基于WebGL的JavaScript 3D图形库&#xff0c;它可以让开发者在浏览器中创建和展示3D图形&#xff0c;包括模型、动画、场景等。本文将介绍如何使用Three.js入门&#xff0c;并通过一个实例来演示如何引入一个模型。 一、环境搭建 在使用Three.js之前&#xff0…

使用神经网络合成数据生成技术实现电力系统无人机自动巡检

使用神经网络合成数据生成技术实现电力系统无人机自动巡检 美国能源公司 Exelon 正在利用神经网络合成数据生成技术&#xff0c;为电力系统无人机自动巡检项目提供支持。这一技术有助于提高巡检效率和准确性&#xff0c;降低人力和时间成本。 1. 电力系统巡检的挑战 电力系统…

Kubernetes部署Minio集群

Kubernetes部署Minio集群 默认已安装kubernetes机群 kubernetes1.25 krew0.4.3 minio operator4.5.4 1、krew # 安装git yum install -y git # 下载 wget https://github.com/kubernetes-sigs/krew/releases/download/v0.4.3/krew-linux_amd64.tar.gz tar -zxvf krew-linux_am…

python---基础小总结

1.常量和布尔值相加 当常量和布尔值相加的时候,如果是True就视为1来和常量相加. 反之,如果是False的话就视为0和常量相加. 但是这样的操作是没有任何意义的! 2.EG:以下情况是会报错的! 3.EG:加不加分号都可以,但是最好不加

Mirror for Samsung TV for mac(三星智能电视投屏软件)

如果您拥有三星电视&#xff0c;并且想在大屏幕上显示手机或计算机的显示屏&#xff0c;那么Mirror for Samsung TV版可以提供解决方案&#xff01;将Mac&#xff0c;iPhone或iPad镜像到任何Samsung Smart TV。无需电线&#xff0c;也不需要其他硬件。 Mirror for Samsung TV m…

三星电视与计算机连接网络设置,三星电视怎么连接网络看电视?

电视用路由器上网&#xff0c;可以通过有线或无线上网&#xff0c;前提是电视支持有线或无线功能。 1、首先打开电视机。 2、按下遥控板的菜单按钮。 3、在菜单中选择网络设置。 4、如果是用有线&#xff0c;则用网线一头接路由器LAN口&#xff0c;一头连接电视的网络接口。 5、…

11.Ansible Roles介绍

什么是Ansible角色&#xff1f; 就像在现实世界中给不同的人分配角色一样,让他们成为医生工程师, 宇航员, 警察,或者厨师&#xff61;在Ansible的世界里, 你可以给服务器分配角色,让它们成为数据库服务器&#xff64; Web服务器&#xff64; Redis消息服务器或备份服务器&#…