class Solution { //主函数调用 public List<List<Integer>> fourSum(int[] nums, int target) { Arrays.sort(nums); List<List<Integer>> result = kSum(nums,target,4,0); return result; } //k数之和 public List<List<Integer>> kSum(int[] nums, int target, int k, int start){ List<...