题解 | #删除链表峰值#

删除链表峰值

https://www.nowcoder.com/practice/30a06e4e4aa549198d85deef1bab6d25

  • 题目考察的知识点:链表的删除
  • 题目解答方法的文字分析:双指针技巧,通过遍历链表得出结果
  • 本题解析所用的编程语言:js
  • 完整且正确的编程代码:

/*

  • function ListNode(x){
  • this.val = x;
  • this.next = null;
  • } / /*
  • 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
  • @param head ListNode类
  • @return ListNode类 */ function deleteNodes( head ) { // write code here const dummyhead=new ListNode(0); dummyhead.next=head; let l=head,r=head.next.next; while(r){ if(l.val<l.next.val&&l.next.val>r.val) {l.next=r; r=r.next;} else{ l=l.next; r=r.next } } return dummyhead.next } module.exports = { deleteNodes : deleteNodes };
全部评论

相关推荐

11-26 22:34
已编辑
重庆邮电大学 Java
快手 客户端开发 (n+5)k*16 公积金12
牛客895077908号:佬 什么双非硕啊
点赞 评论 收藏
分享
头像
11-07 01:12
重庆大学 Java
精致的小松鼠人狠话不多:签哪了哥
点赞 评论 收藏
分享
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
oppo 应用软开 22*15+0.5*12
拿到了ssp完美:真的坎坷,但是你至少拿到这么多offer了!
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务