码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]Remove Duplicates from Sorted List

时间:2014-07-03 16:00:08      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:blog   java   2014   for   算法   io   

题目:给定一个有序的链表,要求去除链表中重复项

算法:遍历链表,通过指针判断重复项,重复节点的删除只需要改变next指向即可

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode deleteDuplicates(ListNode head) {
	    	if (null == head) {
	    		// empty list
	    		return null;
	    	}
	    	
	        ListNode ptr = head;
	        ListNode dupPtr = head.next;
	        while (null != dupPtr) {
	        	while (null!=dupPtr && ptr.val==dupPtr.val) {
	        		dupPtr = dupPtr.next;
	        	}
	        	if (null != dupPtr) {
	        		ptr.next = dupPtr;
	        		ptr = dupPtr;
	        		dupPtr = dupPtr.next;
	        	}
	        }
	        ptr.next = null;
	        
	        return head;
	    }
}


[LeetCode]Remove Duplicates from Sorted List,布布扣,bubuko.com

[LeetCode]Remove Duplicates from Sorted List

标签:blog   java   2014   for   算法   io   

原文地址:http://blog.csdn.net/yeweiouyang/article/details/36465563

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