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

Leetcode#83Remove Duplicates from Sorted List

时间:2015-04-30 01:12:55      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:element   example   public   linked   return   

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.

分析,删除重复项,每个元素只出现一次,这里使用hash函数,判断节点值是否出现过

public class Solution {

    public ListNode deleteDuplicates(ListNode head) {

        Map<Integer,Integer> x=new HashMap<Integer,Integer>();

        ListNode H=new ListNode(0);

        H.next=head;

        ListNode p=H;

        while(p.next!=null)

        {

            if(x.get(p.next.val)==null)

            {

                x.put(p.next.val,1);

                p=p.next;

            }

            else

            {

                p.next=p.next.next;

            }

        }

        return H.next;

    }

}


Leetcode#83Remove Duplicates from Sorted List

标签:element   example   public   linked   return   

原文地址:http://7061299.blog.51cto.com/7051299/1640468

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