lisp-algo/union-find/quick-union.lisp

47 lines
1.6 KiB
Common Lisp
Raw Permalink Normal View History

2019-01-27 20:29:42 +01:00
;;;; Quick Union Algorithm
;;;; This algorithm solve dynamic connectivity
;;;; problem by providing a way to find if there
;;;; is a path between two nodes in a dynamic graph.
;;;; It is an improved version of the Quick Find algorithm
;;;; It optimize the union function
2019-02-24 10:30:57 +01:00
(in-package :com.lisp-algo.union-find)
2019-01-27 20:29:42 +01:00
2019-02-24 20:33:55 +01:00
(defclass quick-union ()
((nw-size
:initarg :network-size
:initform 10
:accessor network-size)
(nw
:initarg nil
:accessor network)))
(defmethod initialize-instance :after ((algo quick-union) &key)
2019-01-27 19:34:56 +01:00
"Build a quick-find network using a dynamic vector"
2019-02-24 20:33:55 +01:00
(with-slots ((n nw-size) (nw nw)) algo
2019-01-27 19:34:56 +01:00
(let ((nodes (make-array n :fill-pointer 0)))
(dotimes (id n)
(vector-push id nodes))
2019-02-24 20:33:55 +01:00
(setf nw nodes))))
2019-01-27 19:34:56 +01:00
2019-02-24 20:33:55 +01:00
(defun quick-union-find-root (network node)
2019-01-27 19:34:56 +01:00
"Find the root of a sub-tree in the network."
(do ((id node value)
(value (elt network node) (elt network value)))
((= id value) id)))
2019-02-24 20:33:55 +01:00
(defmethod union ((algo quick-union) n1 n2)
2019-01-27 19:34:56 +01:00
"Connect to sub-tree together. union represent the union operation on the Quick Union algorithm"
2019-02-24 20:33:55 +01:00
(with-slots ((network nw)) algo
2019-01-27 19:34:56 +01:00
(let ((new-network (copy-seq network)))
2019-02-24 20:33:55 +01:00
(setf (elt new-network (quick-union-find-root new-network n1))
(quick-union-find-root new-network n2))
(setf network new-network))))
2019-01-27 20:29:42 +01:00
2019-02-24 20:33:55 +01:00
(defmethod connected ((algo quick-union) n1 n2)
2019-01-27 20:29:42 +01:00
"Return true if n1 and n2 are connected and nil otherwise. connection represent
the find operation on the Quick Union algorithm"
2019-02-24 20:33:55 +01:00
(with-slots ((network nw)) algo
(= (quick-union-find-root network n1) (quick-union-find-root network n2))))
2019-01-27 19:34:56 +01:00