Implementing a trie data structure in C
There are some data structures that have wide applicability in several situations. One such example are trie data structures, which can be used in as varied situations as in compilers, text editors, and related applications. This afternoon I had some spare time, so I decided to implement a trie data structure (something that I always…