forked from subhadipbhowmik/30-Days-Of-CPP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add problems related to graphs: subhadipbhowmik#433
- Loading branch information
1 parent
309a88d
commit 78df1e7
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |