- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
17 lines
769 B
TypeScript
17 lines
769 B
TypeScript
import { GraphData, NodeConfig } from "./types";
|
|
/**
|
|
* Generate all connected components for an undirected graph
|
|
* @param graph
|
|
*/
|
|
export declare const detectConnectedComponents: (graphData: GraphData) => NodeConfig[][];
|
|
/**
|
|
* Tarjan's Algorithm 复杂度 O(|V|+|E|)
|
|
* For directed graph only
|
|
* a directed graph is said to be strongly connected if "every vertex is reachable from every other vertex".
|
|
* refer: http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm
|
|
* @param graph
|
|
* @return a list of strongly connected components
|
|
*/
|
|
export declare const detectStrongConnectComponents: (graphData: GraphData) => NodeConfig[][];
|
|
export default function getConnectedComponents(graphData: GraphData, directed?: boolean): NodeConfig[][];
|