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

[LeetCode] Reverse Linked List

时间:2015-07-13 15:29:45      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

Reverse a singly linked list.

思路:新建一个ListNode,最后返回这个ListNode.next。中间使用两个临时指针一个指向原来的链表头,一个指向新的链表的next.每次循环都往里面插入新的tempNode.

时间复杂度:O(n)

代码:

    public ListNode reverseList(ListNode head) {
        ListNode node=new ListNode(0);
        ListNode tempNode=null;
        ListNode tempHead=head;
        while(head!=null)
        {
            tempHead=head;
            head=head.next;
            node.next=tempHead;
            tempHead.next=tempNode;
            tempNode=node.next;
        }
        return node.next;
    }

优化:

扩展:

[LeetCode] Reverse Linked List

标签:

原文地址:http://www.cnblogs.com/maydow/p/4642666.html

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