* struct ListNode { * int val; * struct ListNode *next; * }; */ class Solution { public: /** * * @param head ListNode类 * @param n int整型 * @return ListNode类 */ typedef struct ListNode* Node; ListNode* removeNthFromEnd(ListNode* head, int n) { if(!h...