Skip to content

Commit

Permalink
Add problems related to graphs: subhadipbhowmik#433
Browse files Browse the repository at this point in the history
  • Loading branch information
Anshika14528 committed Jun 21, 2024
1 parent 309a88d commit 78df1e7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions blog/2024-06-21-graph-problems/graph-problems.md
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 78df1e7

Please sign in to comment.