From 56c930055b89be6bb675a746e383b0f7e48f50c9 Mon Sep 17 00:00:00 2001 From: Ananya Gupta <145869907+ananyag309@users.noreply.github.com> Date: Tue, 29 Oct 2024 11:38:05 +0530 Subject: [PATCH 1/2] added acyclic graph --- src/app/components/Graphs/acyclicgraph.html | 219 ++++++++++++++++++++ 1 file changed, 219 insertions(+) create mode 100644 src/app/components/Graphs/acyclicgraph.html diff --git a/src/app/components/Graphs/acyclicgraph.html b/src/app/components/Graphs/acyclicgraph.html new file mode 100644 index 0000000..bc3d6fa --- /dev/null +++ b/src/app/components/Graphs/acyclicgraph.html @@ -0,0 +1,219 @@ + + + + + + + Acyclic Graph Visualization + + + + + +

Acyclic Graph Visualization

+ +
+

+ An Acyclic Graph is a directed graph with no cycles. It represents a structure where each node points to other nodes, but no path leads back to the starting node. +

+
+ +
+

Key Properties of Acyclic Graphs

+ +
+ +
+

Interactive Acyclic Graph

+

Hover over nodes to see a highlighted effect. Click and drag nodes to reposition them!

+
+ + +
+ +
+ +
+ + + + + From 3a1ef12a66efd1c1e800c7dc7293f23ff2e5d531 Mon Sep 17 00:00:00 2001 From: Ananya Gupta <145869907+ananyag309@users.noreply.github.com> Date: Tue, 29 Oct 2024 11:41:00 +0530 Subject: [PATCH 2/2] Update header.component.html --- src/app/components/header/header.component.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/components/header/header.component.html b/src/app/components/header/header.component.html index 91929e2..52bd5f5 100644 --- a/src/app/components/header/header.component.html +++ b/src/app/components/header/header.component.html @@ -299,6 +299,7 @@

Trees

+

Directed Acyclic Graphs