摘要: GCD算法的概念:一种求最大公约数的算法GCD算法的时间复杂度:设gcd(a,b)(b<=a),则gcd算法的时间复杂度为:GCD算法的代码: int gcd(int a,int b){ if(a<b)sw... 阅读全文