Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
5
const int maxN = 1e5+5;
6
7
struct Node {
8
int len, link;
9
map<char,int> nxt;
10
} node[2*maxN];
11
12
char S[maxN];
13
bool vis[2*maxN];
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected