Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tries and Suffix Trees implementation

I have studied Tries and Suffix Trees and wanted to implement the same. Please share some links where in I can get an idea about the structure and basic idea of implementation to start with.

Any good example, if included, would be a plus.

Implementation in C.

like image 824
AGeek Avatar asked Jul 22 '10 06:07

AGeek


1 Answers

The C Algorithms Library (http://fragglet.github.io/c-algorithms/) offers a Trie implementation in C. It's open-source with a BSD-style license.

A suffix tree implementation in C can be found here: https://github.com/0xtonyxia/suffix-tree

I hope that helps.

like image 85
Greg S Avatar answered Sep 23 '22 13:09

Greg S