求LC-2K汇编语言(Assembly Language)的算组合数C(n,r)的代码.已经写出,但步骤太多,望高手帮优化一要求使用遗传算法:your assembly-language program will followthis logic closely.int bination(int n,int r){if (r==0 || n==r) {return(1);} else {re
网友回答
我是丁老师,a.k.a.Robert Dick.Hopefully you can optimize the code all by yourself.You know,this is a very important procedure for a coder to optimize the code to work well.Good luck!