10

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

Praveen Gowda I V
  • 9,321
  • 4
  • 40
  • 49
Abhi
  • 5,663
  • 10
  • 37
  • 55

1 Answers1

8

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.

Kev
  • 115,559
  • 50
  • 294
  • 378
Abhijeet Rastogi
  • 15,731
  • 26
  • 75
  • 125