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

leetcode-206

时间:2017-03-12 15:06:19      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:lin   efi   code   java代码   highlight   init   ever   head   bsp   

Reverse Linked List

Reverse a singly linked list.

此题不难,附上java代码:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public ListNode reverseList(ListNode head) {
        if(head==null||head.next==null) return head;
        ListNode pre=head;
        ListNode p=head.next;
        pre.next=null;
        ListNode nxt;
        while(p!=null){
            nxt=p.next;
            p.next=pre;
            pre=p;
            p=nxt;
        }
        return pre;
    }
}

  

 

leetcode-206

标签:lin   efi   code   java代码   highlight   init   ever   head   bsp   

原文地址:http://www.cnblogs.com/lcbg/p/6537530.html

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