15.反转链表

Posted wzqingttian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了15.反转链表相关的知识,希望对你有一定的参考价值。

输入一个链表,反转链表后,输出新链表的

 

/*
public class ListNode {
    int val;
    ListNode next = null;

    ListNode(int val) {
        this.val = val;
    }
}*/
public class Solution {
    public ListNode ReverseList(ListNode head) {
        ListNode newList = null;
        if(head == null || head.next == null) {
            return head;
        }
        
        while(head != null){
       //这里理解可能有点难
       //四个语句抛去中间两个的话,可以直接看作是head= head.next;
       //至于中间两句是改变指向的,原先的head。next指向一个null Node,newList指向原先的head;
       //最后的时候head= head.next的时候head就位空,也不连接了;
ListNode temp = head.next; head.next = newList; newList = head; head = temp; } return newList; } }

  

以上是关于15.反转链表的主要内容,如果未能解决你的问题,请参考以下文章

剑指offer(15)反转链表

C语言反转单向链表的代码

15.反转链表

15.反转链表

15.反转链表

牛客(15)反转链表