逆置链表

题目描述 输入一个链表,反转链表后,输出新链表的表头。 答案 /* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public:     ListNode* ReverseList(ListNode* pHead) {
相关文章
相关标签/搜索