组合数 com(n,r)
生活随笔
收集整理的這篇文章主要介紹了
组合数 com(n,r)
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
//組合數(shù) com(n,r)
View Code /*==========================*\ | 組合數(shù) com(n,r) \*==========================*/ const int maxn = 100; //元素個(gè)數(shù) int com[maxn][maxn]; //注意 long long void get_com() {int i,j,k;for(i=0;i<maxn;i++) {com[i][0]=1;for(j=1;j<=i;j++) com[i][j]=com[i-1][j-1]+com[i-1][j];} }?
轉(zhuǎn)載于:https://www.cnblogs.com/zhang1107/archive/2013/04/18/3028095.html
總結(jié)
以上是生活随笔為你收集整理的组合数 com(n,r)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C#编程-Access数据库的简单应用
- 下一篇: Yahoo邮箱中全部邮件的下载保存