gitextract_rqk1_unp/ ├── A_star_search/ │ ├── README.md │ ├── a_star_search.py │ ├── heuristics.txt │ └── input.txt ├── Assignment Problem/ │ ├── README.md │ ├── assignment_prob_hungarian.py │ └── input.txt ├── BFS/ │ ├── README.md │ ├── bfs.py │ └── input.txt ├── BellmanFord/ │ ├── BellmanFord.py │ └── input.txt ├── DFS/ │ ├── README.md │ ├── dfs_visual.py │ └── input.txt ├── Dijsktra's/ │ ├── README.md │ ├── dijsktras.py │ └── input.txt ├── Egocentric Network/ │ ├── egocentric_network_1.py │ ├── egocentric_network_1_5.py │ ├── egocentric_network_2.py │ └── input.txt ├── Graph Coloring/ │ ├── README.md │ ├── graph_coloring.py │ └── input.txt ├── Greedy BFS/ │ ├── README.md │ ├── greedy_bfs.py │ ├── heuristics.txt │ └── input.txt ├── K Centers Problem/ │ ├── README.md │ ├── input.txt │ └── k_centers_problem.py ├── Kruskal's/ │ ├── README.md │ ├── input.txt │ └── kruskals_quick_union.py ├── Prim's/ │ ├── README.md │ ├── input.txt │ └── prims.py ├── README.md ├── Topological Sort/ │ ├── README.md │ ├── input.txt │ └── topological_sort.py ├── Travelling Salesman Problem/ │ ├── README.md │ ├── input.txt │ └── tsp_christofides.py └── setup.sh