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

Reverse a Singly LinkedList

时间:2015-03-11 07:04:04      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

Reverse a Singly LinkedList
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */

这是面试的时候被问到的一题,还是考察LinkedList的理解,最后如何得到reverse之后的head的。

 

public Class Solution{

    public static ListNode reverseList(ListNode head){
        if(head == null || head.next == null){
            return head;
        }
        
        ListNode next = head.next;
        head.next = null;
        while(next != null){
            ListNode temp = next.next;
            next.next = head;
            head = next;
            next = temp;
        }
        
        return head;
    }
}

 

Reverse a Singly LinkedList

标签:

原文地址:http://www.cnblogs.com/incrediblechangshuo/p/4328898.html

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