123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- (define-module (ice-9 q)
- :export (sync-q! make-q q? q-empty? q-empty-check q-front q-rear
- q-remove! q-push! enq! q-pop! deq! q-length))
- (define (sync-q! q)
- (set-cdr! q (if (pair? (car q)) (last-pair (car q))
- #f))
- q)
- (define (make-q) (cons '() #f))
- (define (q? obj)
- (and (pair? obj)
- (if (pair? (car obj))
- (eq? (cdr obj) (last-pair (car obj)))
- (and (null? (car obj))
- (not (cdr obj))))))
- (define (q-empty? obj) (null? (car obj)))
- (define (q-empty-check q) (if (q-empty? q) (throw 'q-empty q)))
- (define (q-front q) (q-empty-check q) (caar q))
- (define (q-rear q) (q-empty-check q) (cadr q))
- (define (q-remove! q obj)
- (set-car! q (delq! obj (car q)))
- (sync-q! q))
- (define (q-push! q obj)
- (let ((h (cons obj (car q))))
- (set-car! q h)
- (or (cdr q) (set-cdr! q h)))
- q)
- (define (enq! q obj)
- (let ((h (cons obj '())))
- (if (null? (car q))
- (set-car! q h)
- (set-cdr! (cdr q) h))
- (set-cdr! q h))
- q)
- (define (q-pop! q)
- (q-empty-check q)
- (let ((it (caar q))
- (next (cdar q)))
- (if (null? next)
- (set-cdr! q #f))
- (set-car! q next)
- it))
- (define deq! q-pop!)
- (define (q-length q) (length (car q)))
|