摘要: 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.class Solution {public: ListNode *deleteDuplicates(ListNode *head) { // Start typing your C/C++ solution 阅读全文
posted @ 2013-07-08 08:28 一只会思考的猪 阅读(115) 评论(0) 推荐(0) 编辑