I'm trying to print all the multiples of a number N from N to K by using a for loop
for(i=N;i<=K;i+=N)
printf("%d\n", i);
I believe this is O(n) but I'm wondering if there is a quicker way of doing it. thanks
|
I'm trying to print all the multiples of a number N from N to K by using a for loop
I believe this is O(n) but I'm wondering if there is a quicker way of doing it. thanks |
|||
| show 1 more comment |
|
Since the size of your output is K/N, your solution must be at least O(K/N) (or as you called it, O(n)), because you wouldn't be able to create your entire output otherwise. It is possible, however, to make non-algorithmic optimizations, such as minimizing the number of calls to printf (although I'm not sure if this will have any real effect over the performance). |
|||
|
|
|
Since there's nothing to optimize in the loop arithmetic, what's left is the heavy weight But what exactly is too slow here? Are you I/O bound? CPU bound? Or just curious? |
|||
|
|
printfwill be by far the most expensive operation in this loop, that doesn't really leave anything else to optimise. – Paul R May 8 '12 at 7:00O(N)in the number of multiples, butO(1/N)really. Think about it, the higher the number, the less multiples beforek. – Matt May 8 '12 at 7:01