博客
关于我
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

 

 

 

你可能感兴趣的文章
Netty:ChannelPipeline和ChannelHandler为什么会鬼混在一起?
查看>>
Netty:原理架构解析
查看>>
Network Dissection:Quantifying Interpretability of Deep Visual Representations(深层视觉表征的量化解释)
查看>>
Network Sniffer and Connection Analyzer
查看>>
Network 灰鸽宝典【目录】
查看>>
Networkx写入Shape文件
查看>>
NetworkX系列教程(11)-graph和其他数据格式转换
查看>>
Networkx读取军械调查-ITN综合传输网络?/读取GML文件
查看>>
network小学习
查看>>
Netwox网络工具使用详解
查看>>
Net与Flex入门
查看>>
net包之IPConn
查看>>
net发布的dll方法和类显示注释信息(字段说明信息)[图解]
查看>>
Net操作配置文件(Web.config|App.config)通用类
查看>>
NeurIPS(神经信息处理系统大会)-ChatGPT4o作答
查看>>
neuroph轻量级神经网络框架
查看>>
Neutron系列 : Neutron OVS OpenFlow 流表 和 L2 Population(7)
查看>>
NEW DATE()之参数传递
查看>>
New Relic——手机应用app开发达人的福利立即就到啦!
查看>>
new 一个button 然后dispose,最后这个button是null吗???
查看>>