热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

最大公约数GCD的三种算法程序

GreatestCommonDivisor(GCD)欧几里得算法据说是最早的算法,用于计算最大公约数,也是数论的基础算法之一。这里给出使用欧几里得算

Greatest Common Divisor(GCD)

欧几里得算法据说是最早的算法,用于计算最大公约数,也是数论的基础算法之一。

这里给出使用欧几里得算法求最大公约数的递归和非递归的程序,同时给出穷举法求最大公约数的程序。

从计算时间上看,递推法计算速度最快。

程序中包含条件编译语句用于统计分析计算复杂度。

/** 计算两个数的最大公约数三种算法程序*/#include //#define DEBUG
#ifdef DEBUG
int c1=0, c2=0, c3=0;
#endifint gcd1(int, int);
int gcd2(int, int);
int gcd3(int, int);int main(void)
{int m=42, n=140;printf("gcd1: %d %d result=%d\n", m, n, gcd1(m, n));printf("gcd2: %d %d result=%d\n", m, n, gcd2(m, n));printf("gcd3: %d %d result=%d\n", m, n, gcd3(m, n));
#ifdef DEBUGprintf("c1=%d c2=%d c3=%d\n", c1, c2, c3);
#endifreturn 0;
}/* 递归法:欧几里得算法,计算最大公约数 */
int gcd1(int m, int n)
{
#ifdef DEBUGc1++;
#endifreturn (m==0)?n:gcd1(n%m, m);
}/* 迭代法(递推法):欧几里得算法,计算最大公约数 */
int gcd2(int m, int n)
{while(m>0){
#ifdef DEBUGc2++;
#endifint c = n % m;n = m;m = c;}return n;
}/* 连续整数试探算法,计算最大公约数 */
int gcd3(int m, int n)
{if(m>n) {int temp = m;m = n;n = temp;}int t = m;while(m%t || n%t){
#ifdef DEBUGc3++;
#endift--;}return t;
}


关键代码(正解):

/* 迭代法(递推法):欧几里得算法,计算最大公约数 */
int gcd(int m, int n)
{while(m>0){int c = n % m;n = m;m = c;}return n;
}






推荐阅读
author-avatar
袁怡松_779
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有