I have a suffix array SA, and an array L that stores the length of LCP (longest common prefix) between two consecutive suffixes, i.e.
L[i]=LCP(SA[i-1],SA[i]) where 1<=i<=|SA|
It's also described here.
How should I use this array L to find the LCP(x,y) between given two suffixes x and y?
Here array height is equal to array L
using array sa , we can easily calculate array rank
Then using Sparse Table (ST) algorithm to calculate rmq question. http://community.topcoder.com/tc?module=Static&d1=tutorials&d2=lowestCommonAncestor#Range_Minimum_Query_%28RMQ%29
Then just call the function lcp(). Time and space is O(nlogn)