You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The repository contains the designed algorithm implemented on the Vicotia's floor map plan in order with purposal of graph labelling algorithm. The problem was reduced and treated as the one way street problem for which the existing graph algorithms were considered. The program reads the rooms at each floor levels from the text files and purposes an algorithm to automate the labelling of the paths in an undirected graph such that it conforms to the COVID protocol. The algorithm is primarilty based on the Robbins' Theorem and the modified version of the DFS (Depth First Search) algorithm. Following were some of the important tasks which were achieved during the implementation of the algorithms to ensure COVID restrictions are followed properly.
Represent the hospital map in the form of the graph representation.
Detection of the connected components.
Finding the paths from the src node to the dest node.
Implementation of the modified version of classic DFS (Depth First Algorithm).