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

Leetcode#206Reverse Linked List

时间:2015-05-05 12:47:07      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:public   null   return   

反转链表


public class Solution {

    public ListNode reverseList(ListNode head) {

        ListNode H=new ListNode(0);

        H.next=null;

        ListNode p=head;

        while(p!=null)

        {

            ListNode x=p;

            p=p.next;

            x.next=H.next;

            H.next=x;

        }

        return H.next;

    }

}


Leetcode#206Reverse Linked List

标签:public   null   return   

原文地址:http://7061299.blog.51cto.com/7051299/1641964

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