blob: c642aa5655fe1783c0b7d75fe42cf2ebc3071f85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include "c23-fallback.h"
#include <stdio.h>
/**
** Rewrite the recursive Fibonacci such that it unrolls two
** successive recursive calls.
**/
void fib2rec(size_t n, size_t buf[2]) {
if (n > 1) {
buf[0] += buf[1];
buf[1] += buf[0];
fib2rec(n-2, buf);
}
}
size_t fib2(size_t n) {
size_t res[2] = { 1, 1, };
if (n > 2) fib2rec(n-1, res);
return res[!(n%2)];
}
int main(int argc, char* argv[argc+1]) {
for (int i = 1; i < argc; ++i) { // process args
size_t const n = strtoull(argv[i], nullptr, 0); // arg -> size_t
printf("fib(%zu) is %zu\n",
n, fib2(n));
}
return EXIT_SUCCESS;
}
|