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

 

 

 

你可能感兴趣的文章
Nginx 的优化思路,并解析网站防盗链
查看>>
Nginx 的配置文件中的 keepalive 介绍
查看>>
nginx 禁止以ip形式访问服务器
查看>>
NGINX 端口负载均衡
查看>>
Nginx 结合 consul 实现动态负载均衡
查看>>
Nginx 负载均衡与权重配置解析
查看>>
Nginx 负载均衡详解
查看>>
nginx 配置 单页面应用的解决方案
查看>>
nginx 配置https(一)—— 自签名证书
查看>>
nginx 配置~~~本身就是一个静态资源的服务器
查看>>
Nginx 配置服务器文件上传与下载
查看>>
Nginx 配置清单(一篇够用)
查看>>
Nginx 配置解析:从基础到高级应用指南
查看>>
Nginx 集成Zipkin服务链路追踪
查看>>
nginx 集群配置方式 静态文件处理
查看>>
nginx+mysql+redis+mongdb+rabbitmq 自动化部署脚本
查看>>
nginx+php的搭建
查看>>
nginx+tomcat+memcached
查看>>
Nginx+Tomcat实现动静分离
查看>>
nginx+Tomcat性能监控
查看>>