heap.c revision 4c9406964425ecc33fac38bb093e236b43b449e6
/*
* Copyright (C) 1997, 1998, 1999, 2000 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 INTERNET SOFTWARE CONSORTIUM DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
* CONSORTIUM 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.
*/
/*
* Heap implementation of priority queues adapted from the following:
*
* _Introduction to Algorithms_, Cormen, Leiserson, and Rivest,
* MIT Press / McGraw Hill, 1990, ISBN 0-262-03141-8, chapter 7.
*
* _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.
*/
#define heap_parent(i) ((i) >> 1)
#define heap_left(i) ((i) << 1)
#define SIZE_INCREMENT 1024
#define VALID_HEAP(h) ((h) != NULL && \
(h)->magic == HEAP_MAGIC)
/*
* When the heap is in a consistent state, the following invariant
* holds true: for every element i > 1, heap_parent(i) has a higher
* priority than i.
*/
#define HEAPCONDITION(i) ((i) == 1 || \
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;
}