当前位置:网站首页>[leetcode] day97 remove linked list elements
[leetcode] day97 remove linked list elements
2022-07-07 02:08:00 【Upside down, it's a circle】
subject
203. Remove linked list elements 【 Simple 】
Answer key
Iterative solution
class Solution {
public ListNode removeElements(ListNode head, int val) {
ListNode newHead=new ListNode(0,head);
ListNode p=newHead;
while(p.next!=null){
if(p.next.val==val)
p.next=p.next.next;
else
p=p.next;
}
return newHead.next;
}
}
Time complexity : O ( n ) O(n) O(n)
Spatial complexity : O ( 1 ) O(1) O(1)
边栏推荐
- 初识MySQL
- 传感器:土壤湿度传感器(XH-M214)介绍及stm32驱动代码
- 2022 system integration project management engineer examination knowledge point: Mobile Internet
- ROS learning (24) plugin
- 强化学习如何用于医学影像?埃默里大学最新《强化学习医学影像分析》综述,阐述最新RL医学影像分析概念、应用、挑战与未来方向
- Flir Blackfly S工业相机:颜色校正讲解及配置与代码设置方法
- Flir Blackfly S 工业相机:配置多个摄像头进行同步拍摄
- 阿里云中间件开源往事
- 2022/0524/bookstrap
- 微服务架构介绍
猜你喜欢
Zhang Ping'an: accelerate cloud digital innovation and jointly build an industrial smart ecosystem
Centros 8 installation MySQL Error: The gpg Keys listed for the "MySQL 8.0 Community Server" repository are already ins
3D激光SLAM:Livox激光雷达硬件时间同步
Make DIY welding smoke extractor with lighting
ROS learning (XX) robot slam function package -- installation and testing of rgbdslam
Blue Bridge Cup 2022 13th provincial competition real topic - block painting
Basic introduction and use of dvajs
Analyze "C language" [advanced] paid knowledge [i]
ROS学习(二十)机器人SLAM功能包——rgbdslam的安装与测试
AcWing 1148. Secret milk transportation problem solution (minimum spanning tree)
随机推荐
Public key \ private SSH avoid password login
sql中批量删除数据---实体中的集合
ROS learning (26) dynamic parameter configuration
JS how to quickly create an array with length n
WCF Foundation
The use of video in the wiper component causes full screen dislocation
SchedulX V1.4.0及SaaS版发布,免费体验降本增效高级功能!
String to date object
Yiwen takes you into [memory leak]
C语言关于链表的代码看不懂?一篇文章让你拿捏二级指针并深入理解函数参数列表中传参的多种形式
[unique] what is the [chain storage structure]?
Recognition of C language array
ROS学习(26)动态参数配置
1500万员工轻松管理,云原生数据库GaussDB让HR办公更高效
FLIR blackfly s usb3 industrial camera: white balance setting method
一文带你走进【内存泄漏】
Blackfly s usb3 industrial camera: buffer processing
Seconds understand the delay and timing function of wechat applet
Ds-5/rvds4.0 variable initialization error
Flir Blackfly S 工业相机:自动曝光配置及代码