Блог пользователя Confused101

Автор Confused101, история, 8 лет назад, По-английски

I was learning suffix array. I want to know what is the need of n*(log n) suffix array construction, are there problems in which n*(log^2n) construction not sufficient. If so, Can someone please provide links to problems.

Thanks!

  • Проголосовать: нравится
  • -5
  • Проголосовать: не нравится

»
8 лет назад, # |
  Проголосовать: нравится +10 Проголосовать: не нравится

http://www.spoj.com/problems/LCS/

From what i've seen, usually you would see a difference for lengths greater than 200.000, when radix-sort becomes 2-3 times faster.