20 lines
706 B
Text
20 lines
706 B
Text
---
|
|
id: string-suffix
|
|
title: "String Suffix Structures"
|
|
author: Benjamin Qi
|
|
description: "?"
|
|
prerequisites:
|
|
- Platinum - String Searching
|
|
frequency: 0
|
|
---
|
|
|
|
* String Suffix Structures
|
|
* [Suffix Automata](http://codeforces.com/blog/entry/20861)
|
|
* Suffix Tree
|
|
* [CF](http://codeforces.com/blog/entry/16780)
|
|
* [CP-Algo](https://cp-algorithms.com/string/suffix-tree-ukkonen.html)
|
|
* O(nlogn) suffix array usually suffices
|
|
* More on Palindromic Tree
|
|
* [Palindrome Partition](https://codeforces.com/contest/932/problem/G)
|
|
* [Partial Solution](https://codeforces.com/blog/entry/19193)
|
|
* [Palindromic Magic (HARD)](https://codeforces.com/contest/1081/problem/H)
|