字尾陣列模板

2021-07-04 18:13:57 字數 570 閱讀 3539

2016.1.10

重新回味了一下字尾陣列,還是太弱了……

描述一下**中的個陣列

cc陣列 計數排序用

x[i] 表示 以i開頭的字尾按第一關鍵字排序的排名

y[i] 表示 按第二關鍵字排序的排名為i的字尾開始的下標

height[i] 表示 suffix(sa[i])和 suffix(sa[i-1]) 的lcp 

rank[i] 表示suffix(i) 的排名

#include#include#include#include#include#include#include#include#include#define t 111111

using namespace std;

char s[t];

int t1[t],t2[t],cc[t],x[t],sa[t],rank[t],height[t];

int len;

bool cmp(int *y,int a,int b,int k)

int make_sa()

}void make_height()

{ for(int i=0; i

字尾陣列 模板

char s n 陣列的長度要為兩倍的 int n n全域性變數為字元陣列的長度的 int sa n 2 high n 2 rank n 2 tmp n 2 top n 2 void makesa void lcp int main gets s int len strlen s s len get...

字尾陣列模板

過了期末了,繼續寫acm題 自己寫的字尾陣列模板。k,len,rank,sa,tmp,都要寫在外面,這樣就不用來回折騰了。也是使用倍增法來做的,得到乙個sa,儲存了字尾排在第i位的字尾的起始位置。因為空也算乙個字尾,所以函式中都是 len include include include includ...

模板 字尾陣列

include include includeusing namespace std const int max 20001 int num max int sa max rank max height max int wa max wb max wv max wd max int cmp int ...