X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d44311dba4b0e7d8e1d0bd4b36b6d5c9668765e9..509304ee1435b62cd49eb9071995fab468f68f58:/src/xbt/heap.c diff --git a/src/xbt/heap.c b/src/xbt/heap.c index 355a401b8b..394056d779 100644 --- a/src/xbt/heap.c +++ b/src/xbt/heap.c @@ -6,6 +6,7 @@ under the terms of the license (GNU LGPL) which comes with this package. */ #include "xbt/sysdep.h" +#include "xbt/error.h" #include "heap_private.h" /** @@ -20,8 +21,7 @@ xbt_heap_t xbt_heap_new(int init_size, void_f_pvoid_t * const free_func) xbt_heap_t H = xbt_new0(struct xbt_heap, 1); H->size = init_size; H->count = 0; - H->items = - (xbt_heapItem_t) xbt_new0(struct xbt_heapItem, init_size); + H->items = (xbt_heapItem_t) xbt_new0(struct xbt_heapItem, init_size); H->free = free_func; return H; } @@ -36,13 +36,24 @@ void xbt_heap_free(xbt_heap_t H) { int i; if (H->free) - for (i = 0; i < H->size; i++) + for (i = 0; i < H->count; i++) H->free(H->items[i].content); xbt_free(H->items); xbt_free(H); return; } +/** + * xbt_heap_size: + * @H: the heap we're working on + * + * returns the number of elements in the heap + */ +int xbt_heap_size(xbt_heap_t H) +{ + return (H->count); +} + /** * xbt_heap_push: * @H: the heap we're working on @@ -80,7 +91,12 @@ void xbt_heap_push(xbt_heap_t H, void *content, xbt_heap_float_t key) */ void *xbt_heap_pop(xbt_heap_t H) { - void *max = CONTENT(H, 0); + void *max ; + + if(H->count==0) return NULL; + + max = CONTENT(H, 0); + H->items[0] = H->items[(H->count) - 1]; (H->count)--; xbt_heap_maxHeapify(H); @@ -101,6 +117,7 @@ void *xbt_heap_pop(xbt_heap_t H) */ xbt_heap_float_t xbt_heap_maxkey(xbt_heap_t H) { + if(H->count==0) abort(); return KEY(H, 0); } @@ -113,6 +130,7 @@ xbt_heap_float_t xbt_heap_maxkey(xbt_heap_t H) */ void *xbt_heap_maxcontent(xbt_heap_t H) { + if(H->count==0) abort(); return CONTENT(H, 0); }