Implimentation for the Trie data structure #8

Closed
opened 2026-01-29 15:00:17 +00:00 by claunia · 2 comments
Owner

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.

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.
Author
Owner

@dynamitechetan commented on GitHub (Sep 28, 2017):

Sure. 🎉

@dynamitechetan commented on GitHub (Sep 28, 2017): Sure. 🎉
Author
Owner

@shashikedissanayake commented on GitHub (Sep 28, 2017):

For the testing purpose should I have to write a main method to demonstrate the implementation?

@shashikedissanayake commented on GitHub (Sep 28, 2017): For the testing purpose should I have to write a main method to demonstrate the implementation?
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#8