/* struct ListNode { int val; struct ListNode next; ListNode(int x) : val(x), next(NULL) { } };/ class Solution { public: ListNode* ReverseList(ListNode* pHead) { if (pHead==0) return nullptr; else { ListNode* pre=nullptr; ListNode* cur=pHead; ListNode* nex=cur->next; while(cur!=nullptr) ...