组合公式
Posted ainsliaea
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了组合公式相关的知识,希望对你有一定的参考价值。
计算 $C_m^n$
原理。。。
1 double combine(int m, int n) 2 double res = 1.0; 3 int t = 2; 4 for (int i = m - n + 1; i <= m; i++) 5 if (t > n) 6 res *= i; 7 else 8 res = res * i / (t++); 9 10 11 12 for (; t <= n; t++) 13 res /= t; 14 15 16 return res; 17
以上是关于组合公式的主要内容,如果未能解决你的问题,请参考以下文章