反转一个单链表。

示例:

输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL

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

  

posted on 2019-04-05 21:26  墨小轩  阅读(71)  评论(0编辑  收藏  举报