组合数一般求法

1.C[n,m]=n!/(m!*(n-m)!)=C[n,n-m]

2.C[n,m]=C[n,n-m]

3.C[n,m]=C[n-1,m-1]+C[n-1,m]

原文地址:https://www.cnblogs.com/adelalove/p/8581638.html