/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ class Solution { public: ListNode* deleteDuplication(ListNode* pHead) { ListNode* head=new ListNode(-1); head->next=pHead; ListNode* pre=head; while(pre) { ListNode* t=pre->next; if(!t) { break;...