【LeetCode练习题】Remove Duplicates from Sorted List II
摘要:
Remove Duplicates from Sorted List IIGiven a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->2->3->3->4->4->5, return1->2->5.Given1->1->1->2->3, return2->3.题目意思:凡是给定链表里出现的重 阅读全文
posted @ 2014-04-02 21:45 Allen Blue 阅读(103) 评论(0) 推荐(0) 编辑