https://leetcode-cn.com/problems/reverse-linked-list/
反转一个单链表。
示例:
输入: 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() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode reverseList(ListNode head) {
ListNode pre=null; // 新链表头
ListNode curr=head; // 当前链表
while(curr!=null){
ListNode next=curr.next; // 保存指针
curr.next=pre; // 新链表添加元素
pre=curr; // 跟新新链表
curr=next;
}
return pre;
}
}
结果