|
|
|
|
|
by tromp
2307 days ago
|
|
We can actually solve Towers of Hanoi non-recursively by manipulating bits: max = 1 << no_of_discs;
for (x = 1; x < max; x++)
printf("move a disc from %d to %d\n", (x&x-1)%3, ((x|x-1)+1)%3);
where x&x-1 is smaller than x as much as (x|x-1)+1 is larger than x, by a 2-power corresponding to the least significant 1-bit in x. |
|