CycleDetection icon indicating copy to clipboard operation
CycleDetection copied to clipboard

Graph Cycle Detection Algorithm in C#

Results 2 CycleDetection issues
Sort by recently updated
recently updated
newest added

I am checking cyclic dependency between projects and their dependencies (references). With String it is not working. Check below file and its dependencies. [DependencyList.txt](https://github.com/danielrbradley/CycleDetection/files/6471703/DependencyList.txt)

On line 53 of StronglyConnectedComponentFinder, the Stack.Contains method is being used, which runs in O(V) time, which is a bottleneck for the algorithm that can cause it to run in...

up-for-grabs