heap.c revision 7bae6a079bb304bf69ffb83a5ac4cfaec9967ffc
/*
* Copyright (c) 1997, 1998 by 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.
*/
#if !defined(LINT) && !defined(CODECENTER)
#endif /* not lint */
#include <stdlib.h>
#include <isc/assertions.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 ARRAY_SIZE_INCREMENT 512
struct heap_context {
unsigned int magic;
unsigned int array_size;
unsigned int array_size_increment;
unsigned int heap_size;
void **heap;
};
{
return (ISC_R_NOMEMORY);
ctx->array_size = 0;
if (array_size_increment == 0)
else
return (ISC_R_SUCCESS);
}
void
ctx->array_size * sizeof (void *));
}
static boolean_t
void **new_heap;
return (FALSE);
ctx->array_size * sizeof (void *));
return (TRUE);
}
static void
unsigned int p;
for ( p = heap_parent(i);
i = p, p = heap_parent(i) ) {
}
}
static void
while (i <= half_size) {
/* find smallest of the (at most) two children */
j = heap_left(i);
j++;
break;
i = j;
}
}
unsigned int i;
return (ISC_R_NOMEMORY);
return (ISC_R_SUCCESS);
}
void
void *elt;
}
void
}
void
}
void *
}
void
unsigned int i;
}