Class Solution{ Public: ListNode* ReverseList(ListNode* pHead){ //先判断链表表头是否为空 if(pHead==NULL)  ...