反转一个单链表。
示例:
输入: 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; } }
原文:https://www.cnblogs.com/Stefan-24-Machine/p/10660003.html