/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param pHead ListNode类 * @return ListNode类 */ #include <math.h> struct ListNode* ReverseList(struct ListNode* pHead ) { // write code here //反转链表,并返回新链表的表头 typedef struct ListNode Lnode; Lnode *p,*t; //p 指示 反转后的链表头节点 /...