Where can i find Tutorial on String matching using Suffix Arrays ?
Everywhere on codechef ,codeforces , GeeksforGeeks there are tutorial on how to construct a Suffix Array , but no where i found how to match String using Suffix array ?
I tried 2 watch it —
AND
But they aren’t clear at all…
plz give sum links for string matching using Suffix arrays … Thanx
I think you can make use of Longest Common Substring using suffix array. If the length of longest common substring is equal to the size of the smaller string, you found a match. You can try reading this for Longest Common Substring.