MCPcopy Create free account
hub / github.com/Jonathan-Uy/CSES-Solutions / Node

Class Node

String Algorithms/Substring Distribution.cpp:7–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5const int maxN = 1e5+5;
6
7struct Node {
8 int len, link;
9 map<char,int> nxt;
10} node[2*maxN];
11
12char S[maxN];
13bool vis[2*maxN];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected