• LeetCode —— 链表


    持续更新中........... 

    定义链表

    1. public class ListNode {
    2. int val; //节点的值
    3. ListNode next; //下一个节点
    4. public ListNode() {
    5. }
    6. public ListNode(int val) {
    7. this.val = val;
    8. }
    9. public ListNode(int val, ListNode next) {
    10. this.val = val;
    11. this.next = next;
    12. }
    13. }

    203. 移除链表元素

    给你一个链表的头节点 head 和一个整数 val ,请你删除链表中所有满足 Node.val == val 的节点,并返回 新的头节点 。

    示例1:输入:head = [1,2,6,3,4,5,6], val = 6        输出:[1,2,3,4,5]

    示例2:输入:head = [], val = 1        输出:[]

    示例3:输入:head = [7,7,7,7], val = 7        输出:[]

    1. class Solution {
    2. public ListNode removeElements(ListNode head, int val) {
    3. ListNode pre = new ListNode();
    4. pre.next = head;
    5. ListNode cur = pre;
    6. while(cur.next != null){
    7. if(cur.next.val == val){
    8. cur.next = cur.next.next;
    9. }else{
    10. cur = cur.next;
    11. }
    12. }
    13. return pre.next;
    14. }
    15. }

    707. 设计链表

    设计链表的实现。您可以选择使用单链表或双链表。单链表中的节点应该具有两个属性:val 和 nextval 是当前节点的值,next 是指向下一个节点的指针。如果要使用双向链表,则还需要一个属性 prev 以指示链表中的上一个节点。假设链表中的所有节点都是 0-index 的。

    在链表类中实现这些功能:

    • get(index):获取链表中第 index 个节点的值。如果索引无效,则返回-1
    • addAtHead(val):在链表的第一个元素之前添加一个值为 val 的节点。插入后,新节点将成为链表的第一个节点。
    • addAtTail(val):将值为 val 的节点追加到链表的最后一个元素。
    • addAtIndex(index,val):在链表中的第 index 个节点之前添加值为 val  的节点。如果 index 等于链表的长度,则该节点将附加到链表的末尾。如果 index 大于链表长度,则不会插入节点。如果index小于0,则在头部插入节点。
    • deleteAtIndex(index):如果索引 index 有效,则删除链表中的第 index 个节点。
    1. class MyLinkedList {
    2. int size;
    3. ListNode head;
    4. public MyLinkedList() {
    5. size = 0;
    6. head = new ListNode(0);
    7. }
    8. public int get(int index) {
    9. if(index < 0 || index >= size){
    10. return -1;
    11. }
    12. ListNode currentNode = head;
    13. for(int i = 0; i <= index; i++){
    14. currentNode = currentNode.next;
    15. }
    16. return currentNode.val;
    17. }
    18. public void addAtHead(int val) {
    19. addAtIndex(0, val);
    20. }
    21. public void addAtTail(int val) {
    22. addAtIndex(size, val);
    23. }
    24. public void addAtIndex(int index, int val) {
    25. if(index > size){
    26. return;
    27. }
    28. if(index < 0){
    29. index = 0;
    30. }
    31. size++;
    32. ListNode pred = head;
    33. for(int i = 0; i < index; i++){
    34. pred = pred.next;
    35. }
    36. ListNode addNode = new ListNode(val);
    37. addNode.next = pred.next;
    38. pred.next = addNode;
    39. }
    40. public void deleteAtIndex(int index) {
    41. if(index < 0 || index >= size){
    42. return;
    43. }
    44. size--;
    45. ListNode pred = head;
    46. for(int i = 0; i < index; i++){
    47. pred = pred.next;
    48. }
    49. pred.next = pred.next.next;
    50. }
    51. }

    206. 反转链表

    给你单链表的头节点 head ,请你反转链表,并返回反转后的链表。

    示例1:输入:head = [1,2,3,4,5]        输出:[5,4,3,2,1]

    示例2:输入:head = []        输出:[]

    1. class Solution {
    2. public ListNode reverseList(ListNode head) {
    3. ListNode pre = null;
    4. ListNode cur = head;
    5. ListNode temp = null;
    6. while(cur != null){
    7. temp = cur.next;
    8. cur.next = pre;
    9. pre = cur;
    10. cur = temp;
    11. }
    12. return pre;
    13. }
    14. }

    24. 两两交换链表中的节点

    给你一个链表,两两交换其中相邻的节点,并返回交换后链表的头节点。你必须在不修改节点内部的值的情况下完成本题(即,只能进行节点交换)。

    示例1:输入:head = [1,2,3,4]        输出:[2,1,4,3]

    示例2:输入:head = []        输出:[]

    1. class Solution {
    2. public ListNode swapPairs(ListNode head) {
    3. ListNode virtualNode = new ListNode();
    4. virtualNode.next = head;
    5. ListNode pre = virtualNode;
    6. while (head != null && head.next != null) {
    7. ListNode temp = head.next.next; // 缓存
    8. //交换
    9. pre.next = head.next;
    10. head.next.next = head;
    11. //交换完连接上剩余的节点
    12. head.next = temp;
    13. //继续下一次循环
    14. pre = head;
    15. head = temp;
    16. }
    17. return virtualNode.next;
    18. }
    19. }

    21. 合并两个有序链表

     将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 

    示例:输入:l1 = [1,2,4], l2 = [1,3,4]         输出:[1,1,2,3,4,4]

    1. class Solution {
    2. public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
    3. ListNode pre = new ListNode();
    4. ListNode cur = pre;
    5. while(list1 != null && list2 != null){
    6. if(list1.val <= list2.val){
    7. cur.next = list1;
    8. list1 = list1.next;
    9. }else{
    10. cur.next = list2;
    11. list2 = list2.next;
    12. }
    13. cur = cur.next;
    14. }
    15. cur.next = list1 == null ? list2 : list1;
    16. return pre.next;
    17. }
    18. }
    1. //递归
    2. class Solution {
    3. public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
    4. if(list1 == null){
    5. return list2;
    6. }else if(list2 == null){
    7. return list1;
    8. }else if(list1.val < list2.val){
    9. list1.next = mergeTwoLists(list1.next, list2);
    10. return list1;
    11. }else{
    12. list2.next = mergeTwoLists(list1, list2.next);
    13. return list2;
    14. }
    15. }
    16. }

    19. 删除链表的倒数第n个节点

     给你一个链表,删除链表的倒数第 n 个结点,并且返回链表的头结点。

    示例1:输入:head = [1,2,3,4,5], n = 2        输出:[1,2,3,5]

    示例1:输入:head = [1], n = 1         输出:[]

    1. class Solution {
    2. public ListNode removeNthFromEnd(ListNode head, int n) {
    3. ListNode virtualNode = new ListNode();
    4. virtualNode.next = head;
    5. ListNode fastIndex = virtualNode;
    6. ListNode slowIndex= virtualNode;
    7. for(int i = 0; i < n; i++){
    8. fastIndex = fastIndex.next;
    9. }
    10. while(fastIndex.next != null) {
    11. fastIndex = fastIndex.next;
    12. slowIndex = slowIndex.next;
    13. }
    14. slowIndex.next = slowIndex.next.next;
    15. return virtualNode.next;
    16. }
    17. }

    160.相交链表

    给你两个单链表的头节点 headA 和 headB ,请你找出并返回两个单链表相交的起始节点。如果两个链表不存在相交节点,返回 null 。 

    1. public class Solution {
    2. public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
    3. ListNode A = headA;
    4. ListNode B = headB;
    5. while(A != B){
    6. A = A != null ? A.next : headB;
    7. B = B != null ? B.next : headA;
    8. }
    9. return A;
    10. }
    11. }

    141. 环形链表

    给你一个链表的头节点 head ,判断链表中是否有环。如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。

    1. public class Solution {
    2. public boolean hasCycle(ListNode head) {
    3. ListNode slow = head;
    4. ListNode fast = head;
    5. while(fast != null && fast.next != null){
    6. slow = slow.next;
    7. fast = fast.next.next;
    8. if(slow == fast){ //说明有环
    9. return true;
    10. }
    11. }
    12. return false;
    13. }
    14. }

    142. 环形链表II

    给定一个链表的头节点  head ,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。不允许修改 链表。如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。 

    1. class Solution {
    2. public ListNode detectCycle(ListNode head) {
    3. ListNode slow = head;
    4. ListNode fast = head;
    5. while(fast != null && fast.next != null){
    6. slow = slow.next;
    7. fast = fast.next.next;
    8. if(slow == fast){
    9. slow = head;
    10. while(slow != fast){
    11. slow = slow.next;
    12. fast = fast.next;
    13. }
    14. return slow;
    15. }
    16. }
    17. return null;
    18. }
    19. }

    234. 回文链表

    给你一个单链表的头节点 head ,请你判断该链表是否为回文链表。如果是,返回 true ;否则,返回 false 。

    1. class Solution {
    2. public boolean isPalindrome(ListNode head) {
    3. int len = 0;
    4. ListNode cur = head;
    5. while(cur != null){
    6. len++;
    7. cur = cur.next;
    8. }
    9. cur = head;
    10. int[] array = new int[len];
    11. for(int i = 0; i < len; i++){
    12. array[i] = cur.val;
    13. cur = cur.next;
    14. }
    15. int left = 0;
    16. int right = len - 1;
    17. while(left < right){
    18. if(array[left] != array[right]){
    19. return false;
    20. }
    21. left++;
    22. right--;
    23. }
    24. return true;
    25. }
    26. }

    143. 重排链表

    给定一个单链表 L 的头节点 head ,单链表 L 表示为:L0 → L1 → … → Ln - 1 → Ln;请将其重新排列后变为:L0 → Ln → L1 → Ln - 1 → L2 → Ln - 2 → …;不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。

    1. class Solution {
    2. public void reorderList(ListNode head) {
    3. List list = new ArrayList<>();
    4. while(head != null){
    5. list.add(head);
    6. head = head.next;
    7. }
    8. head = list.get(0);
    9. int left = 1;
    10. int right = list.size() - 1;
    11. for(int i = 1; i < list.size(); i++){
    12. if(i % 2 != 0){
    13. head.next = list.get(right);
    14. right--;
    15. }else{
    16. head.next = list.get(left);
    17. left++;
    18. }
    19. head = head.next;
    20. }
    21. head.next = null;
    22. }
    23. }
  • 相关阅读:
    Linux线程安全
    企业虚拟化KVM的三种安装方式(1、完全文本2、模板镜像+配置文件3、gustos图形方式部署安装虚拟机)
    1019 链表的下一个更大节点(单调栈)
    看看阿里文娱怎么建设开放平台,这就是专业~
    js中this的指向
    2022.10.29每日刷题打卡(补
    【C++笔记】第二篇 常量和变量
    【Linux笔记】基本指令(一)
    MyBatis配置文件(mybatis-config.xml)简介说明
    docker安装以及部署
  • 原文地址:https://blog.csdn.net/Archer__13/article/details/128127052