heap.c revision 80a63e1574114b7e4e42d023f3a92cd9c7f252fe
/*
* Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1997-2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: heap.c,v 1.33 2006/04/10 16:28:04 explorer Exp $ */
/*! \file
* Heap implementation of priority queues adapted from the following:
*
* \li "Introduction to Algorithms," Cormen, Leiserson, and Rivest,
* MIT Press / McGraw Hill, 1990, ISBN 0-262-03141-8, chapter 7.
*
* \li "Algorithms," Second Edition, Sedgewick, Addison-Wesley, 1988,
* ISBN 0-201-06673-4, chapter 11.
*/
#include <config.h>
/*@{*/
/*%
* Note: to make heap_parent and heap_left easy to compute, the first
* element of the heap array is not used; i.e. heap subscripts are 1-based,
* not 0-based. The parent is index/2, and the left-child is index*2.
* The right child is index*2+1.
*/
#define heap_parent(i) ((i) >> 1)
#define heap_left(i) ((i) << 1)
/*@}*/
#define SIZE_INCREMENT 1024
/*%
* When the heap is in a consistent state, the following invariant
* holds true: for every element i > 1, heap_parent(i) has a priority
* higher than or equal to that of i.
*/
#define HEAPCONDITION(i) ((i) == 1 || \
/*% ISC heap structure. */
struct isc_heap {
unsigned int magic;
unsigned int size;
unsigned int size_increment;
unsigned int last;
void **array;
};
isc_heap_t **heapp)
{
return (ISC_R_NOMEMORY);
if (size_increment == 0)
else
return (ISC_R_SUCCESS);
}
void
}
static isc_boolean_t
void **new_array;
return (ISC_FALSE);
}
return (ISC_TRUE);
}
static void
unsigned int p;
for (p = heap_parent(i) ;
i = p, p = heap_parent(i)) {
}
INSIST(HEAPCONDITION(i));
}
static void
while (i <= half_size) {
/* Find the smallest of the (at most) two children. */
j = heap_left(i);
j++;
break;
i = j;
}
INSIST(HEAPCONDITION(i));
}
unsigned int i;
return (ISC_R_NOMEMORY);
return (ISC_R_SUCCESS);
}
void
void *elt;
} else {
if (less)
else
}
}
void
}
void
}
void *
}
void
unsigned int i;
}