[LeetCode] 237. Delete Node in a Linked List 删除链表的节点
Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.
Given linked list -- head = [4,5,1,9], which looks like following:
4 -> 5 -> 1 -> 9
Example 1:
Input: head = [4,5,1,9], node = 5 Output: [4,1,9] Explanation: You are given the second node with value 5, the linked list should become 4 -> 1 -> 9 after calling your function.
Example 2:
Input: head = [4,5,1,9], node = 1 Output: [4,5,9] Explanation: You are given the third node with value 1, the linked list should become 4 -> 5 -> 9 after calling your function.
Note:
- The linked list will have at least two elements.
- All of the nodes' values will be unique.
- The given node will not be the tail and it will always be a valid node of the linked list.
- Do not return anything from your function.
写一个函数删除单链表中的一个节点,链表至少有2个元素,所有的节点值是唯一的,给的节点不会是尾部并且是合法的节点,不返回任何值。要求in-place。
解法:先把next节点的值赋给当前节点,在把当前节点的next变成当前节点的next.next。
Java:
1 2 3 4 5 6 | public class Solution { public void deleteNode(ListNode node) { node.val = node.next.val; node.next = node.next.next; } } |
Python:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Definition for singly-linked list. # class ListNode(object): # def __init__(self, x): # self.val = x # self.next = None class Solution( object ): def deleteNode( self , node): """ :type node: ListNode :rtype: void Do not return anything, modify node in-place instead. """ node.val = node. next .val node. next = node. next . next |
Python:
1 2 3 4 5 6 7 8 9 | class Solution: # @param {ListNode} node # @return {void} Do not return anything, modify node in-place instead. def deleteNode( self , node): if node and node. next : node_to_delete = node. next node.val = node_to_delete.val node. next = node_to_delete. next del node_to_delete |
C++:
1 2 3 | void deleteNode(ListNode* node) { *node = *node->next; } |
C++:
1 2 3 4 5 6 7 8 9 | class Solution { public : void deleteNode(ListNode* node) { node->val = node->next->val; ListNode *tmp = node->next; node->next = tmp->next; delete tmp; } }; |
JavaScript:
1 2 3 4 | var deleteNode = function (node) { node.val = node.next.val; node.next = node.next.next; }; |
Ruby:
1 2 3 4 5 | def delete_node(node) node.val = node. next .val node. next = node. next . next nil end |
类似题目:
[LeetCode] 203. Remove Linked List Elements 移除链表元素
All LeetCode Questions List 题目汇总
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构