题解 | #删除有序链表中重复的元素-I#

删除有序链表中重复的元素-I

http://www.nowcoder.com/practice/c087914fae584da886a0091e877f2c79

/*

  • function ListNode(x){
  • this.val = x;
  • this.next = null;
  • } */

/** *

  • @param head ListNode类
  • @return ListNode类 */ function deleteDuplicates( head ) { // write code here // 如果head为空或者head.next为空,返回head if (!head||!head.next){ return head; } let cur=head; while(cur.next){ if(cur.val==cur.next.val) cur.next=cur.next.next; else cur=cur.next } return head; } module.exports = { deleteDuplicates : deleteDuplicates };
全部评论

相关推荐

点赞 评论 收藏
分享
05-23 20:31
已编辑
武汉大学 Java
内向的柠檬精在研究求职打法:注意把武大标粗标大 本地你俩不是乱杀
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务