mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-11 21:36:45 +00:00
Implimentation for the Trie data structure #8
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @shashikedissanayake on GitHub (Sep 28, 2017).
In the data structure section there doesn't have Trie data structure. A Trie is a special data structure used to store strings that can be visualized like a graph.That is mostly used in Search Engines, Genome Analysis, Data Analytics. So I would like to implement Trie using C.
@dynamitechetan commented on GitHub (Sep 28, 2017):
Sure. 🎉
@shashikedissanayake commented on GitHub (Sep 28, 2017):
For the testing purpose should I have to write a main method to demonstrate the implementation?