This is a tiny (sub-1kB) program that vertically prints a binary tree on the command line. Additionally, it prints the first two lines of the poem "Algoryhme" by Radia Perlman.
The unobfuscated source code, including comments, is found in the tree_print.c
file. It is about triple the size of the minified version of which I'm quoting the size. The minified source code is in the file tree_print--unreadable.c
.
To build the minified source from the larger source, run:
make
To generate the minified source, compile it, and execute it, run:
make run
Here are some brief explanations of things I've done to try to make this small. I haven't looked at any C shrinking techniques before, so I don't know if this is well covered ground (it probably is) or if there's an obvious thing I'm missing.
- Using
typedef
to shrinkint
declarations - Use single characters for variable names
- Use the comma operator to combine expressions into a single statement, avoiding the need for braces
- Make use of bit-shifting for powers of two
- Compress
for
loops where possible, to the formfor (; iterations; --iterations)
The code is valid ISO C90, and should work with any compliant compiler (tested with gcc, clang, and msvc). It takes advantage of implicit declarations to call atoi
and putchar
without any includes, which may generate a warning on some compilers. However, in the case of these two functions, the implied declarations will be correct.
Part of the goal of this exercise was to experiment with obfuscation in addition to minification. Thus, the code uses no string or character literals, even though they could allow the size to be reduced further.