* struct ListNode {
 *	int val;
 *	struct ListNode *next;
 * };
 */

class Solution {
public:
    /**
     * 
     * @param head ListNode类 
     * @return ListNode类
     */
    typedef struct ListNode* Node;
    ListNode* deleteDuplicates(ListNode* head) {
        if(!head) return head;
        Node virnode=new ListNode(-1);
        virnode->next=head;
        Node pre=head;
        Node cur=head->next;
        while(cur)
        {
            if(cur->val==pre->val)
            {
                cur=cur->next;
                pre->next=cur;
            }
            else
            {
                cur=cur->next;
                pre=pre->next;
            }
        }
        return virnode->next;
    }
};