;;; -*- mode: scheme; coding: utf-8; -*- ;;; ;;; Copyright (C) 2009, 2010, 2011, 2012 Free Software Foundation, Inc. ;;; ;;; This library is free software; you can redistribute it and/or ;;; modify it under the terms of the GNU Lesser General Public ;;; License as published by the Free Software Foundation; either ;;; version 3 of the License, or (at your option) any later version. ;;; ;;; This library is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;; Lesser General Public License for more details. ;;; ;;; You should have received a copy of the GNU Lesser General Public ;;; License along with this library; if not, write to the Free Software ;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA (define-module (ice-9 vlist) #:use-module (srfi srfi-1) #:use-module (srfi srfi-9) #:use-module (srfi srfi-9 gnu) #:use-module (srfi srfi-26) #:use-module (ice-9 format) #:export (vlist? vlist-cons vlist-head vlist-tail vlist-null? vlist-null list->vlist vlist-ref vlist-drop vlist-take vlist-length vlist-fold vlist-fold-right vlist-map vlist-unfold vlist-unfold-right vlist-append vlist-reverse vlist-filter vlist-delete vlist->list vlist-for-each block-growth-factor vhash? vhash-cons vhash-consq vhash-consv vhash-assoc vhash-assq vhash-assv vhash-delete vhash-delq vhash-delv vhash-fold vhash-fold-right vhash-fold* vhash-foldq* vhash-foldv* alist->vhash)) ;;; Author: Ludovic Courtès ;;; ;;; Commentary: ;;; ;;; This module provides an implementations of vlists, a functional list-like ;;; data structure described by Phil Bagwell in "Fast Functional Lists, ;;; Hash-Lists, Dequeues and Variable-Length Arrays", EPFL Technical Report, ;;; 2002. ;;; ;;; The idea is to store vlist elements in increasingly large contiguous blocks ;;; (implemented as vectors here). These blocks are linked to one another using ;;; a pointer to the next block (called `block-base' here) and an offset within ;;; that block (`block-offset' here). The size of these blocks form a geometric ;;; series with ratio `block-growth-factor'. ;;; ;;; In the best case (e.g., using a vlist returned by `list->vlist'), ;;; elements from the first half of an N-element vlist are accessed in O(1) ;;; (assuming `block-growth-factor' is 2), and `vlist-length' takes only ;;; O(ln(N)). Furthermore, the data structure improves data locality since ;;; vlist elements are adjacent, which plays well with caches. ;;; ;;; Code: