求最大公约数——辗转相除法

作者:追风剑情 发布于:2016-4-30 12:53 分类:Algorithms

辗转相除的数学原理是朴素的欧几里得定理:

GCD(a, b) = GCD(b, a mod b)    (a mod b表示a除以b的余数)

代码实现


  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace GCDTest
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. Console.WriteLine("{0}和{1}的最大公约数={2}", 28, 14, EuclidGcd(28, 14));
  12. Console.WriteLine("{0}和{1}的最大公约数={2}", 58, 14, EuclidGcd(58, 14));
  13. Console.WriteLine("{0}和{1}的最大公约数={2}", 99, 21, EuclidGcd(99, 21));
  14.  
  15. Console.Read();
  16. }
  17.  
  18. /// <summary>
  19. /// 辗转相除法求a和b的最大公约数
  20. /// </summary>
  21. public static int EuclidGcd(int a, int b)
  22. {
  23. if (b > a)
  24. {
  25. int tmp = a;
  26. a = b;
  27. b = tmp;
  28. }
  29.  
  30. while (b != 0)
  31. {
  32. int tmp_b = b;
  33. b = a % b;
  34. a = tmp_b;
  35. }
  36.  
  37. return a;
  38. }
  39. }
  40. }


运行结果

111111.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号