/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param pHead ListNode类 * @return ListNode类 */ struct ListNode* ReverseList(struct ListNode* pHead) { if (pHead == NULL || pHead->next == NULL) { return pHead; } struct ListNode* pre = NULL; struct ListNode* cur = pHead; s...