class Solution {
public:
ListNode* swapPairs(ListNode* head) {
if(head==NULL||head->next==NULL)
return head;
ListNode *f=head;
ListNode *s=head->next;
f->next=swapPairs(head->next->next);
s->next=f;
return s;
}
};
LeetCode_C++_24_链表&递归_中
最新推荐文章于 2024-10-31 16:14:37 发布