summaryrefslogtreecommitdiff
path: root/lib/quick_union.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/quick_union.rb')
-rw-r--r--lib/quick_union.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/quick_union.rb b/lib/quick_union.rb
new file mode 100644
index 0000000..f8a966b
--- /dev/null
+++ b/lib/quick_union.rb
@@ -0,0 +1,31 @@
+class QuickUnion
+ def initialize(size)
+ @items = Array.new(size) { |n| n }
+ @size = Array.new(size, 0)
+ end
+
+ def union(x, y)
+ i = root_of(x)
+ j = root_of(y)
+ return if (i == j)
+
+ if @size[i] < @size[j]
+ @items[i] = j
+ @size[j] = @size[j] + @size[i]
+ else
+ @items[j] = i
+ @size[i] = @size[i] + @size[j]
+ end
+ end
+
+ def connected?(x, y)
+ root_of(x) == root_of(y)
+ end
+
+ private
+
+ def root_of(x)
+ x = @items[x] until @items[x] == x
+ x
+ end
+end