close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

source: branches/f4grobner/priority-queue.lisp@ 3993

Last change on this file since 3993 was 3993, checked in by Marek Rychlik, 8 years ago

* empty log message *

File size: 2.4 KB
Line 
1;;; -*- Mode: Lisp -*-
2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3;;;
4;;; Copyright (C) 1999, 2002, 2009, 2015 Marek Rychlik <rychlik@u.arizona.edu>
5;;;
6;;; This program is free software; you can redistribute it and/or modify
7;;; it under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 2 of the License, or
9;;; (at your option) any later version.
10;;;
11;;; This program is distributed in the hope that it will be useful,
12;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with this program; if not, write to the Free Software
18;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19;;;
20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
21
22(defpackage "PRIORITY-QUEUE"
23 (:use :cl :heap)
24 (:export "PRIORITY-QUEUE"
25 "ENQUEUE"
26 "DEQUEUE"
27 "QUEUE-EMPTY-P"
28 "QUEUE-SIZE"
29 )
30 (:documentation "Implements a priority queue."))
31
32(in-package :priority-queue)
33
34(defclass priority-queue ()
35 ((heap :initarg :heap :accessor priority-queue-heap)
36 (test :initarg :test :accessor priority-queue-test))
37 (:documentation "Representa a priority queue."))
38
39(defmethod initialize-instance ((self priority-queue)
40 &key
41 (element-type 'fixnum)
42 (test #'<=)
43 (element-key #'identity))
44 (with-slots (heap test)
45 self
46 (setf heap (make-heap :element-type element-type)
47 test #'(lambda (x y) (funcall test (funcall element-key y) (funcall element-key x))))))
48
49(defgeneric enqueue (self item)
50 (:method ((self priority-queue) (item t))
51 (with-slots (heap test)
52 self
53 (heap-insert heap item test))))
54
55(defgeneric dequeue (self)
56 (:method ((self priority-queue))
57 (with-slots (heap test)
58 self
59 (heap-remove heap test))))
60
61(defgeneric queue-empty-p (self)
62 (:method ((self priority-queue))
63 (with-slots (heap)
64 self
65 (heap-empty-p heap))))
66
67(defgeneric queue-size (self)
68 (:method ((self priority-queue))
69 (with-slots (heap)
70 self
71 (heap-size heap))))
Note: See TracBrowser for help on using the repository browser.