Longest common extensions via fingerprinting

  • Authors:
  • Philip Bille;Inge Li Gørtz;Jesper Kristensen

  • Affiliations:
  • DTU Informatics, Technical University of Denmark, Copenhagen, Denmark;DTU Informatics, Technical University of Denmark, Copenhagen, Denmark;DTU Informatics, Technical University of Denmark, Copenhagen, Denmark

  • Venue:
  • LATA'12 Proceedings of the 6th international conference on Language and Automata Theory and Applications
  • Year:
  • 2012

Quantified Score

Hi-index 0.00

Visualization

Abstract

The longest common extension (LCE) problem is to preprocess a string in order to allow for a large number of LCE queries, such that the queries are efficient. The LCE value, LCEs(i,j), is the length of the longest common prefix of the pair of suffixes starting at index i and j in the string s. The LCE problem can be solved in linear space with constant query time and a preprocessing of sorting complexity. There are two known approaches achieving these bounds, which use nearest common ancestors and range minimum queries, respectively. However, in practice a much simpler approach with linear query time, no extra space and no preprocessing achieves significantly better average case performance. We show a new algorithm, Fingerprintk, which for a parameter k, 1≤k≤⌈logn ⌉, on a string of length n and alphabet size σ, gives O(kn1/k) query time using O(kn) space and O(kn+sort(n,σ)) preprocessing time, where sort(n,σ) is the time it takes to sort n numbers from σ. Though this solution is asymptotically strictly worse than the asymptotically best previously known algorithms, it outperforms them in practice in average case and is almost as fast as the simple linear time algorithm. On worst case input, this new algorithm is significantly faster in practice compared to the simple linear time algorithm. We also look at cache performance of the new algorithm, and we show that for k=2, cache optimization can improve practical query time.