| 6 | string s; |
| 7 | cmp(int *_idx, string _s) : idx(_idx), s(_s) { } |
| 8 | bool operator()(int a, int b) const { |
| 9 | return s.substr(a) < s.substr(b); |
| 10 | } |
| 11 | }; |
| 12 | |
| 13 | struct naive_suffix_array { |
nothing calls this directly
no outgoing calls
no test coverage detected