leetcode : reverse linked list [基本功,闭着眼也要写出来]
Reverse a singly linked list.
/** * 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 = null; while(head != null) { ListNode next = head.next; head.next = pre; pre = head; head = next; } return pre; } }