题目

定义一个函数,输入一个链表的头节点,反转该链表并输出反转后链表的头节点。
示例:
​​​输入: 1->2->3->4->5->NULL 输出: 5->4->3->2->1->NULL​

分析

第一种方法原地反转链表,设置两个指针一个是指向头节点的cur,一个是空指针pre,先将cur指向的下一个节点保存起来,然后将cur指向指向pre,然后pre再移动到cur处,再将保存起来的值赋给cur让cur能够向右遍历一次,这样反复就反转了整个链表。

第二种方法使用递归操作

反转链表两种方法_链表

代码

/**
* 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|| head.next == null){
return head;
}
ListNode cur=head;
ListNode pre = null;
while(cur !=null){
ListNode temp = cur.next;
cur.next = pre;
pre = cur;
cur = temp;
}
return pre;
}
}

反转链表两种方法_链表_02

/**
* 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|| head.next == null){
return head;
}
//直接对子链表进行递归
ListNode temp = reverseList(head.next);
head.next.next = head;
head.next = null;
return temp;
}
}

反转链表两种方法_java_03