CodersForLife / Data-Structures-Algorithms

Your personal library of every algorithm and data structure code that you will ever encounter
MIT License
171 stars 209 forks source link

Add detectcycleingraph.py #298

Closed souravmondaldev closed 4 years ago

souravmondaldev commented 4 years ago

This is an dfs search algorithm to detect cycle in a graph.This closes #297

Submission Checklist

Type of Change

PR Description

Added a graph algorithm implimented using python.This is an implimentation of detecting cycles in a directed graph using DFS algorithm.

Issue #297

souravmondaldev commented 4 years ago

@piyush6348 please check my PR.Thank you.