mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-03 18:46:50 +08:00
* chore: add cache and build comment to git ignore
* fix: add cmakelists to dynamic programming
* fix: add cmakelists to greedy_algorithms
* fix: add cmakelists to operations_on_datastructures
* fix: add cmakelists to range_queries
* fix: add `dynamic_programmin`, `greedy_algorithms`, `range_queries` and `operations_on_datastructures` subdirectories to cmakelists.txt
* fix: init of transform_reduce in dynamic_programming
* fix: add an include for functional in catalan_numbers
* chore: bump CXX standard to 20
* revert: bump CXX standard to 20
* chore: bump c++ version to 17 and add justification
Arm supports c++ 17
Esp32 supports c++ 23
decision was made to be 17 because it seemed to offer the best combatability
* fix: compilation error in catalan numbers
* fix: add <set> header to longest increasing subsequence nlogn
* fix: add cmath & algorithm header to mo.cpp
* fix: remove register key word from fast integer
* fix: replace using namespace std with std::cin and std::cout
* docs: typo in c++17
* fix: memory leak in bellman_ford
* fix: typo in bellman_ford
* fix: typo in word_break
* fix: dynamic array in coin_change
* fix dynamic array in egg_dropping puzzle
* chore: remove unnecessary comment
* fix: add vla to be an error
* chore: add extra warnings
* fix: use add_compile options instead of set()
* fix: compile options are not strings
* fix: vla in floyd_warshall
* fix: vla in egg_dropping_puzzel
* fix: vla in coin_change
* fix: vla in edit_distance
* fix: vla in floyd_warshall
* feat: remove kadane and replace it with kadane2
* fix: vla in longest_common_subsequence
* fix: int overflow in floyd_warshall
* fix: vla in lisnlogn
* fix: use const vector& instead of array
* fix: use dynamic array instead of vla in knapsack
* fix: use of and in msvc is unsupported by default adding permissive flag fixes it
* test: make executables the tests themselves
* Revert "test: make executables the tests themselves"
This reverts commit 7a16c31c4e.
* fix: make dist constant in print
* fix: namespace issue in unbounded_0_1
* fix: include cstdint to fix compilation
111 lines
3.0 KiB
C++
111 lines
3.0 KiB
C++
#include <climits>
|
|
#include <cstddef>
|
|
#include <iostream>
|
|
#include <vector>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
// Wrapper class for storing a graph
|
|
class Graph {
|
|
public:
|
|
int vertexNum;
|
|
int **edges;
|
|
|
|
// Constructs a graph with V vertices and E edges
|
|
Graph(int V) {
|
|
this->vertexNum = V;
|
|
this->edges = new int *[V];
|
|
for (int i = 0; i < V; i++) {
|
|
this->edges[i] = new int[V];
|
|
for (int j = 0; j < V; j++) this->edges[i][j] = INT_MAX;
|
|
this->edges[i][i] = 0;
|
|
}
|
|
}
|
|
|
|
~Graph() {
|
|
for (int i = 0; i < vertexNum; i++) {
|
|
delete[] edges[i];
|
|
}
|
|
delete[] edges;
|
|
}
|
|
|
|
// Adds the given edge to the graph
|
|
void addEdge(int src, int dst, int weight) {
|
|
this->edges[src][dst] = weight;
|
|
}
|
|
};
|
|
|
|
// Utility function to print distances
|
|
void print(const std::vector<int>& dist, int V) {
|
|
cout << "\nThe Distance matrix for Floyd - Warshall" << endl;
|
|
for (int i = 0; i < V; i++) {
|
|
for (int j = 0; j < V; j++) {
|
|
if (dist[i * V + j] != INT_MAX)
|
|
cout << dist[i * V + j] << "\t";
|
|
else
|
|
cout << "INF"
|
|
<< "\t";
|
|
}
|
|
cout << endl;
|
|
}
|
|
}
|
|
|
|
// The main function that finds the shortest path from a vertex
|
|
// to all other vertices using Floyd-Warshall Algorithm.
|
|
void FloydWarshall(Graph graph) {
|
|
std::size_t V = graph.vertexNum;
|
|
std::vector<std::vector<int> > dist(V, std::vector<int>(V));
|
|
|
|
// Initialise distance array
|
|
for (int i = 0; i < V; i++)
|
|
for (int j = 0; j < V; j++) dist[i][j] = graph.edges[i][j];
|
|
|
|
// Calculate distances
|
|
for (int k = 0; k < V; k++)
|
|
// Choose an intermediate vertex
|
|
|
|
for (int i = 0; i < V; i++)
|
|
// Choose a source vertex for given intermediate
|
|
|
|
for (int j = 0; j < V; j++)
|
|
// Choose a destination vertex for above source vertex
|
|
|
|
if (dist[i][k] != INT_MAX && dist[k][j] != INT_MAX &&
|
|
dist[i][k] + dist[k][j] < dist[i][j])
|
|
// If the distance through intermediate vertex is less than
|
|
// direct edge then update value in distance array
|
|
dist[i][j] = dist[i][k] + dist[k][j];
|
|
|
|
// Convert 2d array to 1d array for print
|
|
std::vector<int> dist1d(V * V);
|
|
for (int i = 0; i < V; i++)
|
|
for (int j = 0; j < V; j++) dist1d[i * V + j] = dist[i][j];
|
|
|
|
print(dist1d, V);
|
|
}
|
|
|
|
// Driver Function
|
|
int main() {
|
|
int V, E;
|
|
int src, dst, weight;
|
|
cout << "Enter number of vertices: ";
|
|
cin >> V;
|
|
cout << "Enter number of edges: ";
|
|
cin >> E;
|
|
Graph G(V);
|
|
for (int i = 0; i < E; i++) {
|
|
cout << "\nEdge " << i + 1 << "\nEnter source: ";
|
|
cin >> src;
|
|
cout << "Enter destination: ";
|
|
cin >> dst;
|
|
cout << "Enter weight: ";
|
|
cin >> weight;
|
|
G.addEdge(src, dst, weight);
|
|
}
|
|
FloydWarshall(G);
|
|
|
|
return 0;
|
|
}
|