代码拉取完成,页面将自动刷新
/*
* @lc app=leetcode.cn id=206 lang=java
*
* [206] 反转链表
*/
// @lc code=start
/**
* 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 ReverseList {
// 简洁
public ListNode reverseList(ListNode head) {
ListNode ans = null;
for (ListNode x = head; x != null; x = x.next) {
ans = new ListNode(x.val, ans);
}
return ans;
}
// 我的解
public ListNode reverseList2(ListNode head) {
ListNode old = head;
ListNode newPrev = null;
ListNode newCurr = null;
while (old != null) {
newCurr = new ListNode(old.val, newPrev);
newPrev = newCurr;
old = old.next;
}
return newCurr;
}
// 原地反转
public ListNode reverseList3(ListNode head) {
ListNode prev = null;
ListNode curr = head;
ListNode next;
while (curr != null) {
// 保存下一个值
next = curr.next;
// 当前节点指向前序结点
curr.next = prev;
// 整体前移
prev = curr;
curr = next;
}
return prev;
}
}
// @lc code=end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。