Giter VIP home page Giter VIP logo

strongly_connected_component_cpp's Introduction

Stromgly_Connected_Component_Cpp

In the following code I use Trees and DFS to represent and traverse the graph, Kosaraju's algorithm to find Strongly Connected Components, Stack for postorder processing, and List2d to store the components. This code implements finding strongly connected components (SCCs) in a directed graph using Kosaraju's algorithm.

The key components are: Graph class - Represents the overall graph and coordinates the SCC finding process Tree class - Represents a directed graph as a binary search tree. Contains the insert, clear, print methods. List2d class - Represents the list of SCCs. Each component is a linked list, and the components are linked in a 2D list structure. Stack class - Auxiliary stack used in the algorithm.

The overall flow is: Read graph from file into two Trees - straight (original) and reversed (with edge directions flipped) Run DFS on straight Tree, pushing nodes to Stack in postorder Pop nodes from Stack, run DFS on reversed Tree using popped nodes as roots. Each tree visited forms an SCC. Add each SCC found in previous step to the List2d of components. Find largest component in List2d, print details and output to file.

The data set links used here are: https://snap.stanford.edu/data/web-Google.html https://snap.stanford.edu/data/ego-Twitter.html

strongly_connected_component_cpp's People

Contributors

qasim1312 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.