Is there a C++ algorithm to calculate the least common multiple for multiple numbers, like lcm(3,6,12) or lcm(5,7,9,12)?
|
feedback
|
|
boost provides functions for calculation lcm of 2 numbers (see here) Then using the fact that
You can easily calculate lcm for multiple numbers as well | ||||
|
feedback
|
|
You can use std::accumulate and some helper functions:
| |||
|
feedback
|
|
Not built in to the standard library. You need to either build it yourself or get a library that did it. I bet Boost has one... | |||
|
feedback
|
|
The algorithm isn't specific to C++. AFAIK, there's no standard library function. To calculate the LCM, you first calculate the GCD (Greatest Common Divisor) using Euclids algorithm. http://en.wikipedia.org/wiki/Greatest_common_divisor The GCD algorithm is normally given for two parameters, but...
To calculate the LCM, use...
The logic for that is based on prime factorization. The more general form (more than two variables) is...
EDIT - actually, I think that last bit may be wrong. The first LCM (for two parameters) is right, though. | |||
|
feedback
|
| ||||
|
feedback
|
|
If you look at this page, you can see a fairly simple algorithm you could use. :-) I'm not saying it's efficient or anything, mind, but it does conceptually scale to multiple numbers. You only need space for keeping track of your original numbers and a cloned set that you manipulate until you find the LCM. | |||
|
feedback
|
lcm(int, int)is easily scalable. You can even do it yourself. – ruslik Nov 19 '10 at 22:19