摘要: 1.使用C(n,m)=C(n 1,m 1)+C(n 1,m)公式进行递归编程实现求组合数C(m,n)的功能 public class C { public static void main(String args[]) { int [] temp = new int [args.length]; i 阅读全文
posted @ 2018-04-07 17:33 I~Justice 阅读(163) 评论(1) 推荐(0) 编辑