singly-linked list----Two words to express it, brief yet powerful!

Two words to express it, brief yet powerful!

发布于 几秒前0递归算法链表

解题思路

此处撰写解题思路

代码

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public static ListNode swapPairs(ListNode head) {
    	if(head==null||head.next==null) {
    		return head;
    	}
    	ListNode next = head.next;
    	head.next = swapPairs(next.next);
        next.next = head;
    	return next;
    }
}
上一篇:PyQt|PySide2 绘图|Python语言 的数据可视化(绘图) 方法


下一篇:powerful number 筛