anAcc22 / another_graph_editor

A graph editor
https://anacc22.github.io/another_graph_editor/
MIT License
89 stars 10 forks source link
graph graph-algorithms-visualizer visualization

Another Graph Editor

A graph editor inspired by CS Academy's graph editor, designed with competitive programming in mind.

Made with React, Typescript, Tailwind CSS, and HTML Canvas.

A Multi-Component Graph

Features

A Demonstration of the Parent-Child Input Format

Leetcode-Style Adjacency Lists Work as Well Under Edges

[!NOTE] Tree Mode and Bridges are only available for undirected graphs.

[!NOTE] For directed graphs, strongly connected components are displayed.

Configuration

In addition to the light/dark themes, there are three sliders available for adjusting the node radius, line thickness, and edge length at discrete intervals. Your configuration will be preserved across refreshes.

[!NOTE] As the node radius changes, the font size is scaled accordingly to maintain readability.

By default, the graph is in Force Mode, where edges hold everything together and nodes repel one another, creating a cool space-like effect. To disable this behavior, simply toggle Lock Mode.

Usage

Adjust the input format to your liking and type away!

[!IMPORTANT] If you're coming from a platform like Codeforces and the input data contains n m, representing the number of vertices and edges respectively, please omit it when copy-pasting the test case data. Similarly, if you have an array p where p[i] represents the parent of i, double check that the parent array lines up with the child array.

[!TIP] To enter a single node, enter u or u u.

[!TIP] When entering node labels, if you want to skip over a particular node, use the character '_' as a placeholder.

Tree Mode

In this mode, the first node that appears in the input data becomes the root.

Node 1 is the Original Root

To set some arbitrary root, say node 2, as the root, under the Roots section, type 2, and it'll become the root of the tree. In scenarios where you have multiple trees, simply type a comma-separated list of all the roots. A caveat is that if you type two nodes that belong to the same tree under Roots, the one that comes first takes precedence, i.e., if you type 2 1, then node 2 is the root, but if you type 1 2, then node 1 is the root.

Node 2 is the New Root

What happens if the graph isn't a tree? Well, the DFS Tree would be displayed instead, where back edges are displayed as dotted lines.

A DFS Tree With Bridges and Cut Vertices Shown

Credits