假设我有一个如下值列表:
1
2
3
4
5
6
我想找到涉及此列表的连续成员的每个组合,例如:
(
// every combination of one element
1, 2, 3, 4, 5, 6,
// every combination of two con. elements
1+2, 2+3, 3+4, 4+5, 5+6,
// every combination of three con. elements
1+2+3, 2+3+4, 3+4+5, 4+5+6,
// every combination of four con. elements
1+2+3+4, 2+3+4+5, 3+4+5+6,
// every combination of five con.elements
1+2+3+4+5, 2+3+4+5+6,
// every combination of six con. elements
1+2+3+4+5+6,
)
如您所见,有n(n+1)/2
多种这样的组合。我可以使用任何 Excel 公式来找到它,理想情况下将其显示为表格,每个组合占一行。