【图解算法使用C++】1.2 生活中的算法

图解算法使用C++

一、计算思维与程序设计

1.2 生活中到处都是算法

  • 计算最大公约数(辗转相除法)【图解算法使用C++】1.2 生活中的算法_第1张图片
// C++
#include
#include
using namespace std;

int test_way1(int Num1,int Num2){
    int tmp;
    if(Num1

附上使用Python递归解法:

def gcd(a,b):
    while b!=0:
        b,a = a%b,b
    return a

print(gcd(10,20))

你可能感兴趣的:(图解算法-使用C++,图解算法使用c++)