码迷,mamicode.com
首页 > 编程语言 > 详细

leetCode 83.Remove Duplicates from Sorted List(删除排序链表的反复) 解题思路和方法

时间:2017-07-23 19:49:59      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:next   tco   add   tno   neu   remove   let   去除   data   

Given a sorted linked list, delete all duplicates such that each element appear only once.

For example,
Given 1->1->2, return 1->2.

Given 1->1->2->3->3, return 1->2->3.

思路:此题与上一题异曲同工,详细解法例如以下:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public ListNode deleteDuplicates(ListNode head) {

        ListNode first = new ListNode(0);
        ListNode last = first;
        
        ListNode p = head;
        
        while(head != null){
        	while(head.next != null){//去除反复项
        		if(p.val == head.next.val){
        			head = head.next;
        		}else{
        			break;
        		}
        	}
        	last.next = p;//每项仅仅加入一个值
        	last = last.next;
        	p = head = head.next;
        	last.next = null;
        }
		return first.next;
    }
}


leetCode 83.Remove Duplicates from Sorted List(删除排序链表的反复) 解题思路和方法

标签:next   tco   add   tno   neu   remove   let   去除   data   

原文地址:http://www.cnblogs.com/lytwajue/p/7225509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!