Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
7adb0d8
improved connected components
ayaankhan98 Jul 16, 2020
117c836
formatting source-code for 7adb0d8d5e534324f9f713b3f0dd19823b6ed768
Jul 16, 2020
f5a35eb
fix: dijkstra.cpp
ayaankhan98 Jul 17, 2020
56556a8
resolved merge conflict
ayaankhan98 Jul 17, 2020
541d3bf
formatting source-code for 56556a81fbb1ff545f80cdf204e4bdfc3223d55c
Jul 17, 2020
54fd715
Added CMakeLists.txt
ayaankhan98 Jul 17, 2020
530da97
fix: infinity
ayaankhan98 Jul 17, 2020
eb10e84
formatting source-code for 530da97aec01cfc1a1a0132a4875ea62a746858e
Jul 17, 2020
257d0b1
Merge branch 'master' into fixgraph
ayaankhan98 Jul 17, 2020
d141aba
Update graph/CMakeLists.txt
ayaankhan98 Jul 17, 2020
483e00c
Update CMakeLists.txt
ayaankhan98 Jul 17, 2020
0023339
fix: clang-tidy errors
ayaankhan98 Jul 17, 2020
cbb43c9
fix: build
ayaankhan98 Jul 25, 2020
c107f99
Merge branch 'master' into fixgraph
ayaankhan98 Jul 25, 2020
e2f344c
Fix linter warnings in fixgraph branch.
fhlasek Aug 2, 2020
f1b909c
Merge remote-tracking branch 'upstream/fixgraph' into fixgraph
fhlasek Aug 3, 2020
edf7b4d
Merge branch 'fixgraph_fixlint' into fixgraph
fhlasek Aug 3, 2020
1c5f229
Refactor lowest common ancestor
fhlasek Aug 3, 2020
0c10e6f
Fix linter for topological_sort_by_kahns_algo
fhlasek Aug 3, 2020
6be3336
Remove unused global variable from dfs_with_stack
fhlasek Aug 3, 2020
891e0dd
Fix linter for dfs_with_stack.
fhlasek Aug 3, 2020
d2b7015
Remove unused global variable from graph/kruskal.
fhlasek Aug 3, 2020
ef031dc
Rename global variable from v to edges in kruskal.
fhlasek Aug 3, 2020
ac26555
Refactor prim
fhlasek Aug 4, 2020
95227af
Fix linter for connected_components_with_dsu
fhlasek Aug 4, 2020
146f1c0
Fix linter warnings in ford_fulkerson
fhlasek Aug 4, 2020
1f9da87
Fix global variable name for connected_component_with_dsu.
fhlasek Aug 4, 2020
5dbf857
Fix global variable name in topological_sort.
fhlasek Aug 4, 2020
e0b5833
Merge branch 'master' into fixgraph
fhlasek Aug 8, 2020
a2178f3
updating DIRECTORY.md
Aug 8, 2020
ce0896f
Merge remote-tracking branch 'upstream/master' into fixgraph
fhlasek Aug 8, 2020
b7383ed
Undo changs in cycle check.
fhlasek Aug 8, 2020
2e43bbd
Rename dfs to depth_first_search.:
fhlasek Aug 9, 2020
f7ff88e
updating DIRECTORY.md
Aug 9, 2020
95f6c6e
Merge branch 'master' into fixgraph
fhlasek Aug 10, 2020
ed5213e
Merge remote-tracking branch 'upstream/master' into fixgraph
fhlasek Aug 13, 2020
efbcaf2
Merge branch 'master' into fixgraph
fhlasek Aug 14, 2020
604945b
Merge branch 'master' into fixgraph
fhlasek Aug 16, 2020
78ecea3
updating DIRECTORY.md
Aug 16, 2020
d50f1c6
updating DIRECTORY.md
Aug 16, 2020
990e578
Merge remote-tracking branch 'upstream/master'
fhlasek Aug 17, 2020
befec35
Merge branch 'master' into fixgraph
fhlasek Aug 17, 2020
9927b46
updating DIRECTORY.md
Aug 17, 2020
c1a2e33
Adjust comment.
fhlasek Aug 18, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ add_subdirectory(backtracking)
add_subdirectory(data_structures)
add_subdirectory(machine_learning)
add_subdirectory(numerical_methods)

add_subdirectory(graph)

cmake_policy(SET CMP0054 NEW)
cmake_policy(SET CMP0057 NEW)
find_package(Doxygen OPTIONAL_COMPONENTS dot dia)
Expand Down
6 changes: 4 additions & 2 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
* [Tree Height](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/tree_height.cpp)

## Geometry
* [Jarvis Algorithm](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/geometry/jarvis_algorithm.cpp)
* [Line Segment Intersection](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/geometry/line_segment_intersection.cpp)

## Graph
Expand All @@ -78,10 +79,11 @@
* [Connected Components](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/connected_components.cpp)
* [Connected Components With Dsu](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/connected_components_with_dsu.cpp)
* [Cycle Check Directed Graph](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/cycle_check_directed_graph.cpp)
* [Dfs](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/dfs.cpp)
* [Dfs With Stack](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/dfs_with_stack.cpp)
* [Depth First Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/depth_first_search.cpp)
* [Depth First Search With Stack](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/depth_first_search_with_stack.cpp)
* [Dijkstra](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/dijkstra.cpp)
* [Hamiltons Cycle](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/hamiltons_cycle.cpp)
* [Is Graph Bipartite](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/is_graph_bipartite.cpp)
* [Kosaraju](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/kosaraju.cpp)
* [Kruskal](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/kruskal.cpp)
* [Lowest Common Ancestor](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/lowest_common_ancestor.cpp)
Expand Down
20 changes: 20 additions & 0 deletions graph/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# If necessary, use the RELATIVE flag, otherwise each source file may be listed
# with full pathname. RELATIVE may makes it easier to extract an executable name
# automatically.
file( GLOB APP_SOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.cpp )
# file( GLOB APP_SOURCES ${CMAKE_SOURCE_DIR}/*.c )
# AUX_SOURCE_DIRECTORY(${CMAKE_CURRENT_SOURCE_DIR} APP_SOURCES)
foreach( testsourcefile ${APP_SOURCES} )
# I used a simple string replace, to cut off .cpp.
string( REPLACE ".cpp" "" testname ${testsourcefile} )
add_executable( ${testname} ${testsourcefile} )

set_target_properties(${testname} PROPERTIES
LINKER_LANGUAGE CXX
)
if(OpenMP_CXX_FOUND)
target_link_libraries(${testname} OpenMP::OpenMP_CXX)
endif()
install(TARGETS ${testname} DESTINATION "bin/graph")

endforeach( testsourcefile ${APP_SOURCES} )
8 changes: 4 additions & 4 deletions graph/cycle_check_directed_graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ using AdjList = std::map<unsigned int, std::vector<unsigned int>>;
*/
class Graph {
public:
Graph() : m_vertices(0), m_adjList({}) {}
Graph() : m_adjList({}) {}
~Graph() = default;
Graph(Graph&&) = default;
Graph& operator=(Graph&&) = default;
Expand All @@ -65,8 +65,8 @@ class Graph {
* @param vertices specify the number of vertices the graph would contain.
* @param adjList is the adjacency list representation of graph.
*/
Graph(unsigned int vertices, AdjList const& adjList)
: m_vertices(vertices), m_adjList(adjList) {}
Graph(unsigned int vertices, AdjList adjList)
: m_vertices(vertices), m_adjList(std::move(adjList)) {}

/** Create a graph from vertices and adjacency list.
*
Expand Down Expand Up @@ -142,7 +142,7 @@ class Graph {
}

private:
unsigned int m_vertices;
unsigned int m_vertices = 0;
AdjList m_adjList;
};

Expand Down
133 changes: 133 additions & 0 deletions graph/depth_first_search.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
/**
*
* \file
* \brief [Depth First Search Algorithm
* (Depth First Search)](https://en.wikipedia.org/wiki/Depth-first_search)
*
* \author [Ayaan Khan](http://github.com/ayaankhan98)
*
* \details
* Depth First Search also quoted as DFS is a Graph Traversal Algorithm.
* Time Complexity O(|V| + |E|) where V is number of vertices and E
* is number of edges in graph.
*
* Application of Depth First Search are
*
* 1. Finding connected components
* 2. Finding 2-(edge or vertex)-connected components.
* 3. Finding 3-(edge or vertex)-connected components.
* 4. Finding the bridges of a graph.
* 5. Generating words in order to plot the limit set of a group.
* 6. Finding strongly connected components.
*
* And there are many more...
*
* <h4>Working</h4>
* 1. Mark all vertices as unvisited first
* 2. start exploring from some starting vertex.
*
* While exploring vertex we mark the vertex as visited
* and start exploring the vertices connected to this
* vertex in recursive way.
*
*/

#include <algorithm>
#include <iostream>
#include <vector>

/**
*
* \namespace graph
* \brief Graph Algorithms
*
*/
namespace graph {
/**
* \brief
* Adds and edge between two vertices of graph say u and v in this
* case.
*
* @param adj Adjacency list representation of graph
* @param u first vertex
* @param v second vertex
*
*/
void addEdge(std::vector<std::vector<size_t>> *adj, size_t u, size_t v) {
/*
*
* Here we are considering undirected graph that's the
* reason we are adding v to the adjacency list representation of u
* and also adding u to the adjacency list representation of v
*
*/
(*adj)[u - 1].push_back(v - 1);
(*adj)[v - 1].push_back(u - 1);
}

/**
*
* \brief
* Explores the given vertex, exploring a vertex means traversing
* over all the vertices which are connected to the vertex that is
* currently being explored.
*
* @param adj garph
* @param v vertex to be explored
* @param visited already visited vertices
*
*/
void explore(const std::vector<std::vector<size_t>> &adj, size_t v,
std::vector<bool> *visited) {
std::cout << v + 1 << " ";
(*visited)[v] = true;
for (auto x : adj[v]) {
if (!(*visited)[x]) {
explore(adj, x, visited);
}
}
}

/**
* \brief
* initiates depth first search algorithm.
*
* @param adj adjacency list of graph
* @param start vertex from where DFS starts traversing.
*
*/
void depth_first_search(const std::vector<std::vector<size_t>> &adj,
size_t start) {
size_t vertices = adj.size();

std::vector<bool> visited(vertices, false);
explore(adj, start, &visited);
}
} // namespace graph

/** Main function */
int main() {
size_t vertices = 0, edges = 0;
std::cout << "Enter the Vertices : ";
std::cin >> vertices;
std::cout << "Enter the Edges : ";
std::cin >> edges;

/// creating graph
std::vector<std::vector<size_t>> adj(vertices, std::vector<size_t>());

/// taking input for edges
std::cout << "Enter the vertices which have edges between them : "
<< std::endl;
while (edges--) {
size_t u = 0, v = 0;
std::cin >> u >> v;
graph::addEdge(&adj, u, v);
}

/// running depth first search over graph
graph::depth_first_search(adj, 2);

std::cout << std::endl;
return 0;
}
46 changes: 46 additions & 0 deletions graph/depth_first_search_with_stack.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#include <iostream>
#include <list>
#include <vector>
#include <stack>

constexpr int WHITE = 0;
constexpr int GREY = 1;
constexpr int BLACK = 2;
constexpr int INF = 99999;

void dfs(const std::vector< std::list<int> > &graph, int start) {
std::vector<int> checked(graph.size(), WHITE);
checked[start] = GREY;
std::stack<int> stack;
stack.push(start);
while (!stack.empty()) {
int act = stack.top();
stack.pop();

if (checked[act] == GREY) {
std::cout << act << ' ';
for (auto it : graph[act]) {
stack.push(it);
if (checked[it] != BLACK) {
checked[it] = GREY;
}
}
checked[act] = BLACK; // nodo controllato
}
}
}

int main() {
int n = 0;
std::cin >> n;
std::vector< std::list<int> > graph(INF);
for (int i = 0; i < n; ++i) {
int u = 0, w = 0;
std::cin >> u >> w;
graph[u].push_back(w);
}

dfs(graph, 0);

return 0;
}
26 changes: 0 additions & 26 deletions graph/dfs.cpp

This file was deleted.

51 changes: 0 additions & 51 deletions graph/dfs_with_stack.cpp

This file was deleted.