代码:

/*** Definition for singly-linked list.* public class ListNode {*     int val;*     ListNode next;*     ListNode(int x) { val = x; }* }*/
public class Solution {public void deleteNode(ListNode node) {if(node == null) return;while(node.next != null){node.val = node.next.val;if(node.next.next != null){node = node.next;}else{node.next = null;}}node = node.next;}
}

  

转载于:https://www.cnblogs.com/5683yue/p/5126136.html

Jan 12 - Delete Node in a Linked List; Data Structure; Linked List; Pointer;相关推荐

  1. 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 t ...

  2. LeetCode刷题记录3——237. Delete Node in a Linked List(easy)

    LeetCode刷题记录3--237. Delete Node in a Linked List(easy) 目录 LeetCode刷题记录3--237. Delete Node in a Linke ...

  3. 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 t ...

  4. Leet Code OJ 237. Delete Node in a Linked List [Difficulty: Easy]

    题目: Write a function to delete a node (except the tail) in a singly linked list, given only access t ...

  5. 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 t ...

  6. C#LeetCode刷题之#237-删除链表中的节点(Delete Node in a Linked List)

    问题 该文章的最新版本已迁移至个人博客[比特飞],单击链接 https://www.byteflying.com/archives/3832 访问. 请编写一个函数,使其可以删除某个链表中给定的(非末 ...

  7. [LintCode] Delete Node in the Middle of Singly Linked List 在单链表的中间删除节点

    Implement an algorithm to delete a node in the middle of a singly linked list, given only access to ...

  8. LintCode Delete Node in the Middle of Singly Linked List 在O(1)时间复杂度删除链表节点

    中文描述: 给定一个单链表中的表头和一个等待被删除的节点(非表头或表尾).请在在O(1)时间复杂度删除该链表节点.并在删除该节点后,返回表头. 样例 给定 1->2->3->4,和节 ...

  9. Lintcode372 Delete Node in the Middle of Singly Linked List solution 题解

    [题目描述] Implement an algorithm to delete a node in the middle of a singly linked list, given only acc ...

最新文章

  1. 实现在Android本地视频播放器开发
  2. 学python语言用什么软件-对于自学python的初学者来说,应该使用什么编辑工具?...
  3. 【刷题记录】杂题记录
  4. Linux 向文件末尾追加命令(转载)
  5. java equals重写原则_java中为何重写equals时必须重写hashCode方法详解
  6. zip unzip_zip和unzip上的Java要点
  7. JNI通过线程c回调java层的函数
  8. php获取40001,php - Discord API错误#40001未经授权 - SO中文参考 - www.soinside.com
  9. 带你自学Python系列(四):range、min、max、sum函数
  10. k8s边缘节点_KubeEdge v0.2发布,全球首个K8S原生的边缘计算平台开放云端代码
  11. 帆软报表在已经搭载服务器上开发_史上最全企业数据产品选型对比(含数仓、报表、BI、中台、数据治理)...
  12. 方舟编译器需要安装吗,还是系统升级后自带的?
  13. idea快速搭建spring cloud-注册中心与注册
  14. JS 在 HTML 中做加减乘除
  15. 淘宝PK京东:哥刷的不是广告,刷的是存在
  16. 充一次电使用一年的手机_手机充一次电用一年?现有技术难实现
  17. BZOJ3709 Bohater 贪心
  18. 删除子文件夹[字典树 + go变量 + strings.builder的copyCheck()]
  19. Java double 保留一个小数、理解BigDecimal、Java解决精度问题
  20. GNSS/INS组合导航(2)-加速度计选型参数解析

热门文章

  1. 使用cnn预测房价_使用CNN的人和马预测
  2. 北京曲剧《烟壶》也好看
  3. fedora 用安装 DVD 建立本地 yum 源
  4. centos编译apache php mysql,在CentOS6.7中编译安装 apache php mysql
  5. 云服务器开启ftp_用云服务器怎么挂机器人
  6. goods.java_javaweb网上书城项目 1.用户管理:注册会员 - 下载 - 搜珍网
  7. 【Ogre-windows】环境配置
  8. 【js】vue 2.5.1 源码学习(二) 策略合并
  9. 自动化测试用例设计原则
  10. tyvj 1059 过河 dp