Skip to content

Commit a7fce77

Browse files
authored
Add files via upload
1 parent 99fbcfe commit a7fce77

5 files changed

+350
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
#include <iostream>
2+
#define V 8
3+
#define I 32767
4+
5+
using namespace std;
6+
7+
void PrintMST(int T[][V-2], int G[V][V]){
8+
cout << "\nMinimum Spanning Tree Edges (w/ cost)\n" << endl;
9+
int sum {0};
10+
for (int i {0}; i<V-2; i++){
11+
int c = G[T[0][i]][T[1][i]];
12+
cout << "[" << T[0][i] << "]---[" << T[1][i] << "] cost: " << c << endl;
13+
sum += c;
14+
}
15+
cout << endl;
16+
cout << "Total cost of MST: " << sum << endl;
17+
}
18+
19+
void PrimsMST(int G[V][V], int n){
20+
int u;
21+
int v;
22+
int min {I};
23+
int track [V];
24+
int T[2][V-2] {0};
25+
26+
// Initial: Find min cost edge
27+
for (int i {1}; i<V; i++){
28+
track[i] = I; // Initialize track array with INFINITY
29+
for (int j {i}; j<V; j++){
30+
if (G[i][j] < min){
31+
min = G[i][j];
32+
u = i;
33+
v = j;
34+
}
35+
}
36+
}
37+
T[0][0] = u;
38+
T[1][0] = v;
39+
track[u] = track[v] = 0;
40+
41+
// Initialize track array to track min cost edges
42+
for (int i {1}; i<V; i++){
43+
if (track[i] != 0){
44+
if (G[i][u] < G[i][v]){
45+
track[i] = u;
46+
} else {
47+
track[i] = v;
48+
}
49+
}
50+
}
51+
52+
// Repeat
53+
for (int i {1}; i<n-1; i++){
54+
int k;
55+
min = I;
56+
for (int j {1}; j<V; j++){
57+
if (track[j] != 0 && G[j][track[j]] < min){
58+
k = j;
59+
min = G[j][track[j]];
60+
}
61+
}
62+
T[0][i] = k;
63+
T[1][i] = track[k];
64+
track[k] = 0;
65+
66+
// Update track array to track min cost edges
67+
for (int j {1}; j<V; j++){
68+
if (track[j] != 0 && G[j][k] < G[j][track[j]]){
69+
track[j] = k;
70+
}
71+
}
72+
}
73+
PrintMST(T, G);
74+
}
75+
76+
int main() {
77+
78+
int cost [V][V] {
79+
{I, I, I, I, I, I, I, I},
80+
{I, I, 25, I, I, I, 5, I},
81+
{I, 25, I, 12, I, I, I, 10},
82+
{I, I, 12, I, 8, I, I, I},
83+
{I, I, I, 8, I, 16, I, 14},
84+
{I, I, I, I, 16, I, 20, 18},
85+
{I, 5, I, I, I, 20, I, I},
86+
{I, I, 10, I, 14, 18, I, I},
87+
};
88+
89+
int n = sizeof(cost[0])/sizeof(cost[0][0]) - 1;
90+
91+
PrimsMST(cost, n);
92+
93+
return 0;
94+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
#include <iostream>
2+
3+
#define I 32767 // Infinity
4+
#define V 7 // # of vertices in Graph
5+
#define E 9 // # of edges in Graph
6+
7+
using namespace std;
8+
9+
void PrintMCST(int T[][V-1], int A[][E]){
10+
cout << "\nMinimum Cost Spanning Tree Edges\n" << endl;
11+
for (int i {0}; i<V-1; i++){
12+
cout << "[" << T[0][i] << "]-----[" << T[1][i] << "]" << endl;
13+
}
14+
cout << endl;
15+
}
16+
17+
// Set operations: Union and Find
18+
void Union(int u, int v, int s[]){
19+
if (s[u] < s[v]){
20+
s[u] += s[v];
21+
s[v] = u;
22+
} else {
23+
s[v] += s[u];
24+
s[u] = v;
25+
}
26+
}
27+
28+
int Find(int u, int s[]){
29+
int x = u;
30+
int v = 0;
31+
32+
while (s[x] > 0){
33+
x = s[x];
34+
}
35+
36+
while (u != x){
37+
v = s[u];
38+
s[u] = x;
39+
u = v;
40+
}
41+
return x;
42+
}
43+
44+
void KruskalsMCST(int A[3][9]){
45+
int T[2][V-1]; // Solution array
46+
int track[E] {0}; // Track edges that are included in solution
47+
int set[V+1] = {-1, -1, -1, -1, -1, -1, -1, -1}; // Array for finding cycle
48+
49+
int i {0};
50+
while (i < V-1){
51+
int min = I;
52+
int u {0};
53+
int v {0};
54+
int k {0};
55+
56+
// Find a minimum cost edge
57+
for (int j {0}; j<E; j++){
58+
if (track[j] == 0 && A[2][j] < min){
59+
min = A[2][j];
60+
u = A[0][j];
61+
v = A[1][j];
62+
k = j;
63+
}
64+
}
65+
66+
// Check if the selected min cost edge (u, v) forming a cycle or not
67+
if (Find(u, set) != Find(v, set)){
68+
T[0][i] = u;
69+
T[1][i] = v;
70+
71+
// Perform union
72+
Union(Find(u, set), Find(v, set), set);
73+
i++;
74+
}
75+
track[k] = 1;
76+
}
77+
78+
PrintMCST(T, A);
79+
}
80+
81+
int main() {
82+
int edges[3][9] = {{ 1, 1, 2, 2, 3, 4, 4, 5, 5},
83+
{ 2, 6, 3, 7, 4, 5, 7, 6, 7},
84+
{25, 5, 12, 10, 8, 16, 14, 20, 18}};
85+
86+
KruskalsMCST(edges);
87+
88+
return 0;
89+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#include <iostream>
2+
3+
using namespace std;
4+
5+
void DFS(int u, int A[][8], int n){
6+
static int visited[8] {0};
7+
8+
if (visited[u] == 0){
9+
cout << u << ", " << flush;
10+
visited[u] = 1;
11+
for (int v=1; v<n; v++){
12+
if (A[u][v] == 1 && visited[v] == 0){
13+
DFS(v, A, n);
14+
}
15+
}
16+
}
17+
}
18+
19+
int main (){
20+
21+
int A[8][8] = {{0, 0, 0, 0, 0, 0, 0, 0},
22+
{0, 0, 1, 1, 1, 0, 0, 0},
23+
{0, 1, 0, 1, 0, 0, 0, 0},
24+
{0, 1, 1, 0, 1, 1, 0, 0},
25+
{0, 1, 0, 1, 0, 1, 0, 0},
26+
{0, 0, 0, 1, 1, 0, 1, 1},
27+
{0, 0, 0, 0, 0, 1, 0, 0},
28+
{0, 0, 0, 0, 0, 1, 0, 0}};
29+
30+
cout << "Vertex: 4 -> " << flush;
31+
DFS(4, A, 8);
32+
cout << endl;
33+
34+
return 0;
35+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
#include <iostream>
2+
#include <stack>
3+
4+
using namespace std;
5+
6+
// Based on Lecture
7+
void DFS(int u, int A[][8], int n) {
8+
// Initialize visit tracking array and stack
9+
int visited[8] {0};
10+
stack<int> stk;
11+
stk.emplace(u);
12+
13+
// Visit start vertex u
14+
cout << u << ", " << flush;
15+
visited[u] = 1; // Visited vertex u
16+
17+
// Initial Adjacent vertex
18+
int v = 0;
19+
20+
while (!stk.empty()){
21+
while (v < n){
22+
if (A[u][v] == 1 && visited[v] == 0){
23+
stk.push(u); // Suspend exploring current vertex u
24+
u = v; // Update current vertex as the next adjacent vertex
25+
26+
// Visit current vertex u
27+
cout << u << ", " << flush;
28+
visited[u] = 1;
29+
v = -1; // Increment will make this 0
30+
}
31+
v++;
32+
}
33+
v = u; // Can set v = 0 but setting v = u is better
34+
u = stk.top(); // Return to previous suspended vertex
35+
stk.pop();
36+
}
37+
}
38+
39+
// Simpler and adds elements to stack from end
40+
void dfs(int u, int A[][8], int n){
41+
int visited[8] {0};
42+
stack<int> stk;
43+
stk.emplace(u);
44+
45+
while (!stk.empty()){
46+
u = stk.top();
47+
stk.pop();
48+
49+
if (visited[u] != 1){
50+
cout << u << ", " << flush;
51+
visited[u] = 1;
52+
53+
for (int v=n-1; v>=0; v--){
54+
if (A[u][v] == 1 && visited[v] == 0){
55+
stk.emplace(v);
56+
}
57+
}
58+
}
59+
}
60+
}
61+
62+
int main (){
63+
64+
int A[8][8] = {{0, 0, 0, 0, 0, 0, 0, 0},
65+
{0, 0, 1, 1, 1, 0, 0, 0},
66+
{0, 1, 0, 1, 0, 0, 0, 0},
67+
{0, 1, 1, 0, 1, 1, 0, 0},
68+
{0, 1, 0, 1, 0, 1, 0, 0},
69+
{0, 0, 0, 1, 1, 0, 1, 1},
70+
{0, 0, 0, 0, 0, 1, 0, 0},
71+
{0, 0, 0, 0, 0, 1, 0, 0}};
72+
73+
int u = 5;
74+
cout << "DFS Vertex: " << u << " -> " << flush;
75+
DFS(u, A, 8);
76+
cout << endl;
77+
78+
cout << "dfs Vertex: " << u << " -> " << flush;
79+
dfs(u, A, 8);
80+
cout << endl;
81+
82+
return 0;
83+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#include <iostream>
2+
#include <queue>
3+
4+
using namespace std;
5+
6+
void BFS(int vtx, int A[][8], int n){
7+
queue<int> Q;
8+
int visited[8] {0};
9+
10+
// Initial
11+
cout << vtx << ", " << flush; // Visit vertex
12+
visited[vtx] = 1;
13+
Q.emplace(vtx);
14+
15+
// Explore
16+
while (!Q.empty()){
17+
int u = Q.front(); // Vertex u for exploring
18+
Q.pop();
19+
for (int v=1; v<=n; v++){ // Adjacent vertices of vertex u
20+
if (A[u][v] == 1 && visited[v] == 0){ // Adjacent vertex and not visited
21+
cout << v << ", " << flush; // Visit vertex
22+
visited[v] = 1;
23+
Q.emplace(v);
24+
}
25+
}
26+
}
27+
cout << endl;
28+
}
29+
30+
int main (){
31+
32+
int A[8][8] = {{0, 0, 0, 0, 0, 0, 0, 0},
33+
{0, 0, 1, 1, 1, 0, 0, 0},
34+
{0, 1, 0, 1, 0, 0, 0, 0},
35+
{0, 1, 1, 0, 1, 1, 0, 0},
36+
{0, 1, 0, 1, 0, 1, 0, 0},
37+
{0, 0, 0, 1, 1, 0, 1, 1},
38+
{0, 0, 0, 0, 0, 1, 0, 0},
39+
{0, 0, 0, 0, 0, 1, 0, 0}};
40+
41+
cout << "Vertex: 1 -> " << flush;
42+
BFS(1, A, 8);
43+
44+
cout << "Vertex: 4 -> " << flush;
45+
BFS(4, A, 8);
46+
47+
48+
return 0;
49+
}

0 commit comments

Comments
 (0)