forked from SkienaBooks/Algorithm-Design-Manual-Programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathset_union.c
91 lines (66 loc) · 1.89 KB
/
set_union.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* set_union.c
Implementation of a heap / priority queue abstract data type.
by: Steven Skiena
begun: March 27, 2002
*/
/*
Copyright 2003 by Steven S. Skiena; all rights reserved.
Permission is granted for use in non-commerical applications
provided this copyright notice remains intact and unchanged.
This program appears in my book:
"Programming Challenges: The Programming Contest Training Manual"
by Steven Skiena and Miguel Revilla, Springer-Verlag, New York 2003.
See our website www.programming-challenges.com for additional information.
This book can be ordered from Amazon.com at
http://www.amazon.com/exec/obidos/ASIN/0387001638/thealgorithmrepo/
*/
#include <stdio.h>
#include "set_union.h"
/* [[[ set_union_init_cut */
void set_union_init(set_union *s, int n) {
int i; /* counter */
for (i = 1; i <= n; i++) {
s->p[i] = i;
s->size[i] = 1;
}
s->n = n;
}
/* ]]] */
/* [[[ set_union_find_cut */
int find(set_union *s, int x) {
if (s->p[x] == x) {
return(x);
}
return(find(s, s->p[x]));
}
/* ]]] */
/* [[[ set_union_union_sets_cut */
void union_sets(set_union *s, int s1, int s2) {
int r1, r2; /* roots of sets */
r1 = find(s, s1);
r2 = find(s, s2);
printf("s1=%d r1=%d s2=%d r2=%d\n", s1, r1, s2, r2);
if (r1 == r2) {
return; /* already in same set */
}
if (s->size[r1] >= s->size[r2]) {
s->size[r1] = s->size[r1] + s->size[r2];
s->p[r2] = r1;
} else {
s->size[r2] = s->size[r1] + s->size[r2];
s->p[r1] = r2;
}
}
/* ]]] */
/* [[[ same_component_cut */
bool same_component(set_union *s, int s1, int s2) {
return (find(s, s1) == find(s, s2));
}
/* ]]] */
void print_set_union(set_union *s) {
int i; /* counter */
for (i = 1; i <= s->n; i++) {
printf("%i set=%d size=%d \n", i, s->p[i], s->size[i]);
}
printf("\n");
}