Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

suffix tree implementation in python [closed]

Just wondering if you are aware of any C based extension in python that can help me construct suffix trees/arrays in linear time ?

like image 315
Abhi Avatar asked Jan 24 '12 23:01

Abhi


1 Answers

You can checkout the following implementations.

http://www.daimi.au.dk/~mailund/suffix_tree.html

https://hkn.eecs.berkeley.edu/~dyoo/python/suffix_trees/

https://github.com/kvh/Python-Suffix-Tree

A guy improved (first one) and put it here.

http://researchonsearch.blogspot.com/2010/05/suffix-tree-implementation-with-unicode.html

All are C implementations.

like image 175
Abhijeet Rastogi Avatar answered Sep 21 '22 18:09

Abhijeet Rastogi