Euclidean Algorithm Java Coding Challenge | Edabit | How'd You Code That?

Опубликовано: 15 Март 2020
на канале: Ed Clark
126
9

Euclidean Algorithm

Named after the Greek mathematician, Euclid, The Euclidean Algorithm is an efficient method for computing the greatest common divisor of two whole numbers, without explicitly factoring the two numbers. It’s used in countless applications, including computing the explicit expression in Bezout’s identity, constructing continued fractions, reduction of fractions to their simplest forms, and attacking the RSA crypto-system.

The steps to compute the greatest common divisor of two numbers (“a” and “b”), using the Euclidean Algorithm are as follows:

1. Divide "a" by "b" and set "r" as the remainder.
2. If “r” = 0, STOP! The gcd is “b”.
3. Set "a" = "b" and "b" = "r" and start the algorithm over again.

Simple, and a perfect use case for recursion.

Song: Heaven - Ikson (Vlog No Copyright Music)
Music promoted by Vlog No Copyright Music.
  / ikson  


Смотрите видео Euclidean Algorithm Java Coding Challenge | Edabit | How'd You Code That? онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Ed Clark 15 Март 2020, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 126 раз и оно понравилось 9 людям.