views:

83

answers:

1

Hi,

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

Any good examplee, if included... would be a pluss...

Implementation in C.......

Thankss..

+2  A: 

The C Algorithms Library (http://c-algorithms.sourceforge.net/) 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: http://mila.cs.technion.ac.il/~yona/suffix_tree/

I hope that helps.

Greg S