当前位置:   article > 正文

算法题 - 求数组的子集合_已知一个数组[1, 2, 3], 将数组里的元素任意排列组合成子数组

已知一个数组[1, 2, 3], 将数组里的元素任意排列组合成子数组

求数组的子集合


记录面试算法题,便于回顾


题目一:

给出一个数组 list = [1,2,3,4,5,6]

求此数组的所有子集合

输出:[1],[1,2],[1,2,3]…


题目二:

给出一个数组 list = [1,2,3,4,5,6]

求此数组的所有子集合中和为6的子集

输出:[6,[2,4],[1,5],[1,2,3]


解题思路:

方式一:递归

方式二:全排列方式


方式一:递归


算法
package com.tianya.java.algorithm;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

/**
 * @description
 *	求数组的子集合,子数组
 *	方式一:递归方式
 * @author TianwYam
 * @date 2021年6月1日下午2:37:21
 */
public class SubArray {
	
	public static void main(String[] args) {
		
		// 测试数组
		int[] list = {1,2,3,4,5,6} ;
		
		// 保存结果集
		List<List<Integer>> resultList = new ArrayList<>();
		List<Integer> subList = new ArrayList<>();
		
		// 递归调用
		subList(list, 0, resultList, subList);
		
		// 求数组的子集
		System.out.println("数组的所有子集合:");
		for (List<Integer> sub : resultList) {
			System.out.println(Arrays.toString(sub.toArray()));
		}
		
		// 求各个子集中 和 为6的集合
		System.out.println("输出和为:6");
		for (List<Integer> sub : resultList) {
			int sum = sub.stream().reduce(0, Integer::sum);
			if (sum == 6) {
				System.out.println(Arrays.toString(sub.toArray()));
			}
		}
	}
	
	
	/**
	 * @description
	 *	递归 
	 * @author TianwYam
	 * @date 2021年6月1日下午3:22:41
	 * @param list
	 * @param index
	 * @param resultList
	 * @param subList
	 */
	public static void subList(int[] list , int index, 
			List<List<Integer>> resultList, List<Integer> subList) {
		
		resultList.add(new ArrayList<>(subList));
		
		int size = list.length ;
		for (int i = index; i < size; ) {
			subList.add(list[i]);
			subList(list, ++i, resultList, subList);
			subList.remove(subList.size() - 1);
		}
		
	}
	

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70

结果
数组的所有子集合:
[]
[1]
[1, 2]
[1, 2, 3]
[1, 2, 3, 4]
[1, 2, 3, 4, 5]
[1, 2, 3, 4, 5, 6]
[1, 2, 3, 4, 6]
[1, 2, 3, 5]
[1, 2, 3, 5, 6]
[1, 2, 3, 6]
[1, 2, 4]
[1, 2, 4, 5]
[1, 2, 4, 5, 6]
[1, 2, 4, 6]
[1, 2, 5]
[1, 2, 5, 6]
[1, 2, 6]
[1, 3]
[1, 3, 4]
[1, 3, 4, 5]
[1, 3, 4, 5, 6]
[1, 3, 4, 6]
[1, 3, 5]
[1, 3, 5, 6]
[1, 3, 6]
[1, 4]
[1, 4, 5]
[1, 4, 5, 6]
[1, 4, 6]
[1, 5]
[1, 5, 6]
[1, 6]
[2]
[2, 3]
[2, 3, 4]
[2, 3, 4, 5]
[2, 3, 4, 5, 6]
[2, 3, 4, 6]
[2, 3, 5]
[2, 3, 5, 6]
[2, 3, 6]
[2, 4]
[2, 4, 5]
[2, 4, 5, 6]
[2, 4, 6]
[2, 5]
[2, 5, 6]
[2, 6]
[3]
[3, 4]
[3, 4, 5]
[3, 4, 5, 6]
[3, 4, 6]
[3, 5]
[3, 5, 6]
[3, 6]
[4]
[4, 5]
[4, 5, 6]
[4, 6]
[5]
[5, 6]
[6]
输出和为:6
[1, 2, 3]
[1, 5]
[2, 4]
[6]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70

方式二:全排列组合


算法
package com.tianya.java.algorithm;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

/**
 * @description
 *	求数组的子集合,子数组
 *	方式二:全排列方式
 * @author TianwYam
 * @date 2021年6月1日下午2:37:21
 */
public class SubArray2 {
	
	public static void main(String[] args) {
		
		// 数组
		int[] list = {1,2,3,4,5,6} ;
		
		// 保存结果集 
		List<List<Integer>> resultList = new ArrayList<>();
		
		// 全排列 循环
		int size = list.length ;
		for (int i = 0; i < size; i++) {
			
			// 保存单个
			resultList.add(new ArrayList<>(Arrays.asList(list[i])));
			
			for (int j = i+1; j < size; j++) {
				
				List<Integer> subList = new ArrayList<>();
				subList.add(list[i]);
				
				for (int k = j; k < size; k++) {
					subList.add(list[k]);
					
					// 保存重新一个数组
					resultList.add(new ArrayList<>(subList));
				}
			}
			
		}
		
		
		
		System.out.println("数组的所有子集合:");
		for (List<Integer> sub : resultList) {
			System.out.println(Arrays.toString(sub.toArray()));
		}
		
		
		System.out.println("输出和为:6");
		for (List<Integer> sub : resultList) {
			int sum = sub.stream().reduce(0, Integer::sum);
			if (sum == 6) {
				System.out.println(Arrays.toString(sub.toArray()));
			}
		}
	}
	
	

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66

结果
数组的所有子集合:
[1]
[1, 2]
[1, 2, 3]
[1, 2, 3, 4]
[1, 2, 3, 4, 5]
[1, 2, 3, 4, 5, 6]
[1, 3]
[1, 3, 4]
[1, 3, 4, 5]
[1, 3, 4, 5, 6]
[1, 4]
[1, 4, 5]
[1, 4, 5, 6]
[1, 5]
[1, 5, 6]
[1, 6]
[2]
[2, 3]
[2, 3, 4]
[2, 3, 4, 5]
[2, 3, 4, 5, 6]
[2, 4]
[2, 4, 5]
[2, 4, 5, 6]
[2, 5]
[2, 5, 6]
[2, 6]
[3]
[3, 4]
[3, 4, 5]
[3, 4, 5, 6]
[3, 5]
[3, 5, 6]
[3, 6]
[4]
[4, 5]
[4, 5, 6]
[4, 6]
[5]
[5, 6]
[6]
输出和为:6
[1, 2, 3]
[1, 5]
[2, 4]
[6]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47



欢迎关注,谢谢!


刚开始写微信公众号,请多多关注,欢迎,多谢!

微信公众号:《Java学习积累》
请关注一下,多谢!!!
微信公众号:Java学习积累

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/987582
推荐阅读
相关标签
  

闽ICP备14008679号