博客
关于我
C++求两个数的最大公约数
阅读量:609 次
发布时间:2019-03-12

本文共 735 字,大约阅读时间需要 2 分钟。

思路一:给定a,b两个数,将较小的数赋值给c,令c=b(不妨设a>b),将a和b对c做求余运算,从c开始依次减1向下遍历,直到两者的余数都为0则返回c,否则继续循环遍历。

代码如下:

#include
int gcd(int a,int b){ int c; c=(a>b)?b:a; while(a%c!=0||b%c!=0) { c--; } return c;}int main(){ int a,b,max_div; cout<<"please input two integer:"; cin>>a>>b; max_div=gcd(a,b); cout<<"the greatest common divisor of "; cout<
<<" and "<<<" is "<
<

思路二:辗转相除法

假设a>b,如果a不能被b整除,则将b赋值给a,余数赋值给b,重复执行a%b,直到a能够被b整除。此时返回b的值,则为最大公约数。

代码如下:

#include
int gcd2(int a,int b){ int c; if(a
>a>>b; max_div=gcd2(a,b); cout<<"the greatest common divisor of "; cout<
<<" and "<<<" is "<
<

很显然:方法2比方法1更加高效,优先推荐使用方法2

参考文献:http://blog.csdn.net/a1414345/article/details/51770430

 

 

 

你可能感兴趣的文章
Mysql执行计划字段解释
查看>>
mysql执行计划怎么看
查看>>
MySQL执行计划解读
查看>>
mysql执行顺序与索引算法
查看>>
mysql批量update优化_Mysql中,21个写SQL的好习惯,你值得拥有呀
查看>>
mysql批量update操作时出现锁表
查看>>
MYSQL批量UPDATE的两种方式
查看>>
mysql批量修改字段名(列名)
查看>>
MySQL批量插入数据遇到错误1213的解决方法
查看>>
mysql技能梳理
查看>>
MySQL报Got an error reading communication packets错
查看>>
Mysql报错Can‘t create/write to file ‘/tmp/#sql_3a8_0.MYD‘ (Errcode: 28 - No space left on device)
查看>>
MySql报错Deadlock found when trying to get lock; try restarting transaction 的问题解决
查看>>
MySQL报错ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘
查看>>
Mysql报错Packet for query is too large问题解决
查看>>
mysql报错级别_更改MySQL日志错误级别记录非法登陆(Access denied)
查看>>
Mysql报错:too many connections
查看>>
MySQL报错:无法启动MySQL服务
查看>>
mysql授权用户,创建用户名密码,授权单个数据库,授权多个数据库
查看>>
mysql排序查询
查看>>