Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 

README.md

Suffix Trie, Suffix Tries and Triemap implemented in Python

String algorithm for fun! Detailed information can be found on my blogger MuTuX.

Examples

    st = SuffixTrie("abcefdgacematabce")
	a = "efdg"
	b = "efg"
	c = "atabce"
	d = "abc"
	print "hasSubstring - " + a + ": " + str(st.hasSubstring(a))
	print "hasSubstring - " + b + ": " + str(st.hasSubstring(b))
	print "hasSuffix - " + c + ": " + str(st.hasSuffix(c))
	print "hasSuffix - " + d + ": " + str(st.hasSuffix(d))

Finally

Have fun!

About

String algorithms related to suffix trie and tries

Topics

Resources

License

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.