算法
biren_wang
慎独
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
数学中组合的一种递归实现
数学中组合的一种递归实现 import java.util.LinkedList; import java.util.List;class My { public static List<List<Integer>> select(List<Integer> src,int count){ if(count==1){ List<List<Integer原创 2017-11-17 22:29:33 · 530 阅读 · 0 评论 -
数学排列的一种递归实现
public static List<List<Integer>> combine(List<Integer> src){ if(src.size()==1){ List<List<Integer>> temp=new ArrayList<List<Integer>>(); temp.add(src); return原创 2017-11-19 15:51:51 · 255 阅读 · 0 评论
分享