2-4反转链表

题目描述

  • 反转单链表

解题方法1

  • 遍历链表,利用头插法将节点依次插入到头节点之后。
public class Test {
    public static void main(String[] args) throws Exception {
       int[] arr = {10,20,30,40,50};
       Node head = create(arr);
        reverse(head);
       for(Node p = head.next;p!=null;p=p.next){
           System.out.println(p.val);
       }
    }
    //反转链表
    public static Node reverse(Node head){
        if(head==null || head.next==null){
            return head;
        }
        Node p = head.next;
        head.next = null;
        while(p!=null){
            Node temp = p.next;
            p.next = head.next;
            head.next = p;
            p=temp;
        }
        return head;
    }
    public static Node create(int[] arr){
        Node head = new Node(0); //头节点
        Node newnode = null; //指向新节点
        Node tail = head; //指向链表尾节点
        for(int a:arr){
            newnode = new Node(a);
            newnode.next = tail.next;
            tail.next = newnode;
            tail = newnode;
        }
        return head;
    }
}
class Node{
    int val;
    Node next;
    Node(int val){
        this.val = val;
    }
}
2-4反转链表2-4反转链表 zuiziyoudexiao 发布了99 篇原创文章 · 获赞 61 · 访问量 17万+ 私信 关注
上一篇:网络流 Newnode's pdf 题解


下一篇:双向循环链表 java版,不含头结点