Created
November 6, 2019 14:05
-
-
Save ppeeou/10d9eb6d2e8075e6e37fcac6334f49f1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdio.h" | |
#include <stack> | |
#include <vector> | |
#include <iostream> | |
#include "string" | |
using namespace std; | |
struct Comparator | |
{ | |
vector<int> group; | |
int t; | |
Comparator(vector<int> &_group, int _t) | |
{ | |
group = _group; | |
t = _t; | |
} | |
bool operator()(int a, int b) | |
{ | |
if (group[a] != group[b]) | |
{ | |
return group[a] < group[b]; | |
} | |
return group[a + t] < group[b + t]; | |
} | |
}; | |
vector<int> getSuffixArray(const string &s) | |
{ | |
int n = s.size(); | |
int t = 1; | |
vector<int> group(n + 1); | |
for (int i = 0; i < n; ++i) | |
{ | |
group[i] = s[i]; | |
} | |
group[n] = -1; | |
vector<int> perm(n); | |
for (int i = 0; i < n; ++i) | |
{ | |
perm[i] = i; | |
} | |
while (t < n) | |
{ | |
Comparator compareUsing2T(group, t); | |
sort(perm.begin(), perm.end(), compareUsing2T); | |
t *= 2; | |
if (t >= n) | |
{ | |
break; | |
} | |
vector<int> newGroup(n + 1); | |
newGroup[n] = -1; | |
newGroup[perm[0]] = 0; | |
for (int i = 1; i < n; i++) | |
{ | |
if (compareUsing2T(perm[i - 1], perm[i])) | |
{ | |
newGroup[perm[i]] = newGroup[perm[i - 1]] + 1; | |
} | |
else | |
{ | |
newGroup[perm[i]] = newGroup[perm[i - 1]]; | |
} | |
} | |
group = newGroup; | |
} | |
return perm; | |
} | |
int main() | |
{ | |
string s = "banana"; | |
vector<int> convert = getSuffixArray(s); | |
for (int i = 0; i < convert.size(); i++) | |
{ | |
printf("%d", convert[i]); | |
} | |
printf("\n"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment