-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Suffix Prefix
Mission Peace edited this page Apr 3, 2016
·
1 revision
- A suffix array is a sorted array of all suffixes of a given string. Given an array create suffix array for it - SuffixArray.java
- A ternary search tree is a special trie data structure where the child nodes of a standard trie are ordered as a binary search tree. Write a program to insert and search in ternary tree - TernaryTree.java
- Write a program to insert,search and delete in trie - Trie.java
- Ukkonen's suffix tree - SuffixTree.java
- Z algorithm for pattern matching ZAlgorithm.java