Java原地逆置链表

java 复制代码
public class Solution {
    public static void main(String[] args){
        ListNode ls = new ListNode();
        ls.addNode(10);
        ls.addNode(20);
        ls.addNode(30);
        ls.printLN();
        System.out.println("After reverse..");
        ls.reverse();
        ls.printLN();
    }
}
class Node{
    int val;
    Node next;
    static int count = 0;
    public Node(int data){
        this.val = data;
        next = null;
    }
}
class ListNode{
    Node head = new Node(0);  // headNode-no val
    public void addNode(int data){
        Node temp = head;
        Node newNode = new Node(data);
        while(temp.next != null){
            temp = temp.next;
        }
        temp.next = newNode;
        Node.count++;
        System.out.println("already have nodes " + Node.count);
    }
    public void reverse(){
        Node current = this.head.next;
        Node nextNode = null;
        int count = 1;      // 不需要创建一个新的链表以实现头插法,记录第一个头插的节点,并使其next域指向null
        while(current != null){
            System.out.println(current.val);
            nextNode = current.next;
            current.next = head.next;
            head.next = current;
            if(count ==1 ){ // 第一个头插法的节点需要将指针域置为null
                current.next = null;
            }
            count++;
            current = nextNode;
        }
    }
    public void printLN(){
        Node temp = this.head.next;
        while(temp != null){
            System.out.println(temp.val);
            temp = temp.next;
        }
    }
}
相关推荐
silence2501 分钟前
深入了解 Reactor:响应式编程的利器
java·spring
谢道韫66610 分钟前
今日总结 2024-12-27
开发语言·前端·javascript
weixin_SAG12 分钟前
21天掌握javaweb-->第19天:Spring Boot后端优化与部署
java·spring boot·后端
lili-felicity13 分钟前
指针与数组:深入C语言的内存操作艺术
c语言·开发语言·数据结构·算法·青少年编程·c#
m0_7482475515 分钟前
SpringMVC跨域问题解决方案
java
Elcker16 分钟前
KOI技术-事件驱动编程(Sping后端)
java·spring·架构
GitNohup18 分钟前
Spring boot处理跨域问题
java·spring boot·跨域
大今野27 分钟前
node.js和js
开发语言·javascript·node.js
Just_Paranoid30 分钟前
使用 IDE生成 Java Doc
java·开发语言·ide
ᥬ 小月亮34 分钟前
Js前端模块化规范及其产品
开发语言·前端·javascript