码迷,mamicode.com
首页 > 其他好文 > 详细

15.反转链表

时间:2019-04-06 18:54:29      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:||   ==   int   bsp   class   反转链表   直接   highlight   list   

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

 

/*
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.反转链表

标签:||   ==   int   bsp   class   反转链表   直接   highlight   list   

原文地址:https://www.cnblogs.com/wzQingtTian/p/10662197.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!