From 78df1e77b50cc828730d16861cf8ff8ba0166552 Mon Sep 17 00:00:00 2001 From: Anshika Yadav <14anshika7yadav@gmail.com> Date: Fri, 21 Jun 2024 22:51:51 +0530 Subject: [PATCH] Add problems related to graphs: #433 --- .../graph-problems.md | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 blog/2024-06-21-graph-problems/graph-problems.md diff --git a/blog/2024-06-21-graph-problems/graph-problems.md b/blog/2024-06-21-graph-problems/graph-problems.md new file mode 100644 index 00000000..a4a5b88d --- /dev/null +++ b/blog/2024-06-21-graph-problems/graph-problems.md @@ -0,0 +1,28 @@ +--- +slug: graph-problems +title: Graph Problems +authors: [Anshika] +tags: ["30daysofcpp", "arrays", "practice-problems","leetcode","geeksforgeeks"] +--- + +- [Find Center of Star Graph](https://leetcode.com/problems/find-center-of-star-graph/description/) + +- [All Paths From Source to Target](https://leetcode.com/problems/all-paths-from-source-to-target/description/) + +- [Minimum Number of Vertices to Reach All Nodes](https://leetcode.com/problems/minimum-number-of-vertices-to-reach-all-nodes/description/) + +- [Count the Number of Complete Components](https://leetcode.com/problems/count-the-number-of-complete-components/description/) + +- [Undirected Graph Cycle](https://www.geeksforgeeks.org/problems/detect-cycle-in-an-undirected-graph/1?page=1&category=Graph&difficulty=Easy,Medium&sortBy=submissions) + +- [Directed Graph Cycle](https://www.geeksforgeeks.org/problems/detect-cycle-in-a-directed-graph/1?page=1&category=Graph&difficulty=Easy,Medium&sortBy=submissions) + +- [BFS of graph](https://www.geeksforgeeks.org/problems/bfs-traversal-of-graph/1?page=1&category=Graph&difficulty=Easy,Medium&sortBy=submissions) + +- [DFS of Graph](https://www.geeksforgeeks.org/problems/depth-first-traversal-for-a-graph/1?page=1&category=Graph&difficulty=Easy,Medium&sortBy=submissions) + +- [Topological sort](https://www.geeksforgeeks.org/problems/topological-sort/1?page=1&category=Graph&difficulty=Easy,Medium&sortBy=submissions) + +- [Print adjacency list](https://www.geeksforgeeks.org/problems/print-adjacency-list-1587115620/1?page=1&category=Graph&difficulty=Easy,Medium&sortBy=submissions) + +- [Minimum Spanning Tree](https://www.geeksforgeeks.org/problems/minimum-spanning-tree/1?page=1&category=Graph&difficulty=Easy,Medium&sortBy=submissions) \ No newline at end of file