<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
* [Upper Folder - 上一级目录](../)
* [Source Code - 源码](https://github.com/zhaochenyou/Way-to-Algorithm/blob/master/src/CombinatorialMathematics/DuplicableCombination.hpp)
* [Test Code - 测试](https://github.com/zhaochenyou/Way-to-Algorithm/blob/master/src/CombinatorialMathematics/DuplicableCombination.cpp)
--------
### Duplicable Combination
### (元素)重复的组合
<div>
问题:
<p id="i">在有\(n\)个互不相同元素的集合\(A = \{a_0,a_1,a_2, \dots ,a_{n-1} \}\)中,任意取\(m\)个元素(\(m \leq n\),\(m\)和\(n\)都是自然数,并且同一个元素可以重复使用)的所有组合。例如对于集合\(A = \{1, 2, 3\}\),从中取出\(3\)个元素可重复的所有组合为:</p>
\[
[1, 1, 1] \\
[1, 1, 2] \\
[1, 2, 1] \\
[2, 1, 1] \\
[1, 2, 2] \\
[2, 1, 2] \\
[2, 2, 1] \\
[2, 2, 2] \\
[2, 2, 3] \\
[2, 3, 2] \\
[3, 2, 2] \\
[2, 3, 3] \\
[3, 2, 3] \\
[3, 3, 2] \\
[3, 3, 3] \\
[1, 1, 3] \\
[1, 3, 1] \\
[3, 1, 1] \\
[1, 3, 3] \\
[3, 1, 3] \\
[3, 3, 1] \\
[1, 2, 3] \\
[1, 3, 2] \\
[3, 2, 1] \\
[3, 1, 2] \\
[2, 1, 3] \\
[2, 3, 1]
\]
解法:
<p id="i"><a href="https://zhaochenyou.github.io/Way-to-Algorithm/Search/Recursion">Recursion</a>可以解决这个问题。所求的组合是长度为\(m\)的数组\(S\),其中每个元素\(i\)可以选择的值为集合\(A\)中的任意一个元素。因此我们只需要递归的对每个元素i选择一个值,然后递归下去对元素i+1设置一个值,直到将数组中所有元素都选择了一个值,即可得到一个组合。 </p>
<p id="i">所求组合的长度为\(m\),集合\(A\)的成员有\(n\)个,该算法的时间复杂度\(O(m^n)\)。 </p>
</div>
Online Judge:
* [leetcode-40](https://leetcode.com/problems/combination-sum/)
* [leetcode-40 source.hpp](https://github.com/zhaochenyou/Way-to-Algorithm/blob/master/attachment/leetcode-40.hpp)
- Content 目录
- Preface 前言
- Chapter-1 Sort 第1章 排序
- InsertSort 插入排序
- BubbleSort 冒泡排序
- QuickSort 快速排序
- MergeSort 归并排序
- Chapter-2 Search 第2章 搜索
- BinarySearch 二分查找法(折半查找法)
- BruteForce 暴力枚举
- Recursion 递归
- BreadthFirstSearch 广度优先搜索
- BidirectionalBreadthSearch 双向广度搜索
- AStarSearch A*搜索
- DancingLink 舞蹈链
- Chapter-3 DataStructure 第3章 数据结构
- DisjointSet 并查集
- PrefixTree(TrieTree) 前缀树
- LeftistTree(LeftistHeap) 左偏树(左偏堆)
- SegmentTree 线段树
- FenwickTree(BinaryIndexedTree) 树状数组
- BinarySearchTree 二叉查找树
- AVLTree AVL平衡树
- RedBlackTree 红黑树
- Chapter-4 DynamicProgramming 第4章 动态规划
- Chapter-5 GraphTheory 第5章 图论
- Chapter-6 Calculation 第6章 计算
- LargeNumber 大数字
- Exponentiation 求幂运算
- Chapter-7 CombinatorialMathematics 第7章 组合数学
- FullPermutation 全排列
- UniqueFullPermutation 唯一的全排列
- Combination 组合
- DuplicableCombination (元素)可重复的组合
- Subset 子集
- UniqueSubset 唯一的子集
- Permutation 排列
- PermutationGroup 置换群
- Catalan 卡特兰数
- Chapter-8 NumberTheory 第8章 数论
- Sieve 筛选算法
- Euclid 欧几里得
- EuclidExtension 欧几里得扩展
- ModularLinearEquation 模线性方程
- ChineseRemainerTheorem 中国剩余定理
- ModularExponentiation 模幂运算
- Chapter-9 LinearAlgebra 第9章 线性代数
- Chapter-10 AnalyticGeometry 第10章 解析几何
- Chapter-11 TextMatch 第11章 文本匹配
- SimpleMatch 简单匹配
- AhoCorasickAutomata AC自动机
- KnuthMorrisPratt KMP匹配算法
- RabinKarp RabinKarp算法
- BoyerMoore BoyerMoore算法
- Chapter-12 GameTheory 第12章 博弈论
- BashGame 巴什博弈
- WythoffGame 威佐夫博弈
- NimGame 尼姆博弈