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

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

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

function deleteDuplicates( head ) {
  if(head==null || head.next==null)  
    return head;
  
  let cur = head;
  while(cur.next != null){
    if(cur.val == cur.next.val){
      cur.next = cur.next.next;
    }else{
      cur = cur.next;
    }
  }
  return head;
}
/*
 * function ListNode(x){
 *   this.val = x;
 *   this.next = null;
 * }
 */

/**
  * 
  * @param head ListNode类 
  * @return ListNode类
  */
 function deleteDuplicates( head ) {
  let empty = new ListNode(-100),
      pre = empty;
  
  while(head){
   if(head.val != pre.val){
     pre.next = head;
     pre = pre.next;
   }
    head = head.next;
  }
  
  pre.next = null;
  return empty.next;
}

全部评论

相关推荐

06-19 12:33
安徽大学 Java
点赞 评论 收藏
分享
06-23 11:43
门头沟学院 Java
allin校招的烤冷面很爱看电影:我靠,今天中午我也是这个hr隔一个星期发消息给我。问的问题还是一模一样的😅
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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