力扣linkedlist

反转链表、
java 复制代码
public class reverseList {
//    1->2->3->o  、   o<-1<-2<-3
    public ListNode reverseList(ListNode head){//反转链表
        ListNode prev=null;
        ListNode curr=head;
        while(curr!=null){
            ListNode next=curr.next;
            curr.next=prev;
            prev=curr;
            curr=next;
        }
        return prev;
    }
    public static void main(String[] args) {
        ListNode head = new ListNode(1);
        head.next = new ListNode(2);
        head.next.next = new ListNode(3);
        head.next.next.next = new ListNode(4);
        head.next.next.next.next = new ListNode(5);
        reverseList solution = new reverseList();
        ListNode re = solution.reverseList(head);
        while (re != null) {
            System.out.print(re.val + "");
            re = re.next;
        }
    }
}
相交链表、
java 复制代码
import java.util.HashSet;
import java.util.Set;
public class interlinkedlist {
    public ListNode getIntersectionNode1(ListNode headA,ListNode headB){
        Set<ListNode>set=new HashSet<>();
        while(headA!=null){
            set.add(headA.next);
            headA=headA.next;
        }
        while(headB!=null){
            if(set.contains(headB)){
                return headB;
            }
            headB=headB.next;
        }
        return null;
    }
    public ListNode getIntersectionNode2(ListNode headA,ListNode headB){
        if(headA==null||headB==null) return null;
        ListNode pA=headA,pB=headB;
        while(pA!=pB){
            pA=pA==null?headB:pA.next;
            pB=pB==null?headA:pB.next;
        }
        return pA;
    }
    // 测试代码
    public static void main(String[] args) {
        // 创建两个链表
        // 链表 A: 4 -> 1 -> 8 -> 4 -> 5
        // 链表 B: 5 -> 6 -> 1 -> 8 -> 4 -> 5
        ListNode headA = new ListNode(4);
        headA.next = new ListNode(1);
        headA.next.next = new ListNode(8);
        headA.next.next.next = new ListNode(4);
        headA.next.next.next.next = new ListNode(5);
        ListNode headB = new ListNode(5);
        headB.next = new ListNode(6);
        headB.next.next = new ListNode(1);
        headB.next.next.next = headA.next.next; // 相交节点 8
        headB.next.next.next.next =headA.next.next.next;
        headB.next.next.next.next.next =headA.next.next.next.next;
        interlinkedlist solution = new interlinkedlist();
        ListNode intersection = solution.getIntersectionNode1(headA, headB);
        if (intersection != null) {
            System.out.println("Intersected at '" + intersection.val + "'");
        } else {
            System.out.println("No intersection");
        }
    }
}
class ListNode {
    int val;
    ListNode next;
    public ListNode() {
    }
    public ListNode(int val, ListNode next) {
        this.val = val;
        this.next = next;
    }
    ListNode(int x) {
        this.val = x;
        this.next = null;
    }
}
回文链表、
复制代码
//核心思想是通过递归的方式从链表的尾部向前进行比较,同时用一个前指针从头部向尾部进行比较
java 复制代码
package org.example;
public class PalindromeLinkedList {
    private ListNode frontPointer;
    private boolean recursivelyCheck(ListNode currentNode) {
        if (currentNode != null) {
            if (!recursivelyCheck(currentNode.next)) {
                return false;
            }
            if (currentNode.val != frontPointer.val) {
                return false;
            }
            frontPointer = frontPointer.next;
        }
        return true;
    }
    public boolean isPalindrome(ListNode head) {
        frontPointer = head;
        return recursivelyCheck(head);
    }
    public static void main(String[] args) {
        // 创建链表 1 -> 2 -> 2 -> 1
        ListNode node1 = new ListNode(1);
        ListNode node2 = new ListNode(2);
        ListNode node3 = new ListNode(2);
        ListNode node4 = new ListNode(3);
        node1.next = node2;
        node2.next = node3;
        node3.next = node4;
        PalindromeLinkedList solution = new PalindromeLinkedList();
        boolean result = solution.isPalindrome(node1);
        System.out.println("链表是否是回文: " + result);
    }
}
相关推荐
艾醒(AiXing-w)19 小时前
大模型面试题剖析:模型微调中冷启动与热启动的概念、阶段与实例解析
人工智能·深度学习·算法·语言模型·自然语言处理
纪莫19 小时前
技术面:Spring (事务传播机制、事务失效的原因、BeanFactory和FactoryBean的关系)
java·spring·java面试⑧股
天选之女wow19 小时前
【代码随想录算法训练营——Day32】动态规划——509.斐波那契数、70.爬楼梯、746.使用最小花费爬楼梯
算法·leetcode·动态规划
红衣小蛇妖19 小时前
LeetCode-704-二分查找
java·算法·leetcode·职场和发展
!chen19 小时前
【Spring Boot】自定义starter
java·数据库·spring boot
rongqing201919 小时前
问题记录:一个简单的字符串正则匹配算法引发的 CPU 告警
算法
koko4219 小时前
天津小公司面经
java·学习·面试
无限进步_19 小时前
C语言字符串与内存操作函数完全指南
c语言·c++·算法
zjjuejin20 小时前
Maven 现代开发流程的集成
java·后端·maven
rengang6620 小时前
07-逻辑回归:分析用于分类问题的逻辑回归模型及其数学原理
人工智能·算法·机器学习·分类·逻辑回归