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

LeetCode——Reverse Linked List

时间:2015-05-21 00:00:01      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:

         反转链表,用了一个比较笨的方法。

       

public class Solution {
    public ListNode reverseList(ListNode head) {
        if(head == null || head.next == null)
            return head;
         ArrayList<Integer> list = new ArrayList<Integer>();
        ListNode p = head;
        while(p!=null) {
            list.add(p.val);
            p = p.next;
        }
        ListNode q = head;
        for(int i=list.size()-1; i>=0; i--) {
            q.val = list.get(i);
            q = q.next;
        }
        return head;
        
    }
}

 

LeetCode——Reverse Linked List

标签:

原文地址:http://www.cnblogs.com/wxisme/p/4518554.html

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