class Solution {
public ListNode swapPairs(ListNode head) {
if(head==null || head.next==null){
return head;
}
ListNode next=head.next;
head.next=swapPairs(head.next.next);
next.next=head;
return next;
}
}
相关文章
- 10-19python每日一练之I/O实现读写csv文件
- 10-19每日一题,每日一练.1(压缩字符串)
- 10-19每日一练-leetcode
- 10-19牛客网-每日一练
- 10-19QT每日一练day17:QString和QByteArray
- 10-1921-3-24 力扣每日刷题 456. 132 模式
- 10-19每日一练(7):旋转数组的最小数字
- 10-194.14 每日一练
- 10-19每日一练-leetcode
- 10-19Python每日一练(1):计算文件夹内各个文章中出现次数最多的单词