Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'v3_9_x' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid into v3_9_x
[simgrid.git] / src / xbt / heap.c
1 /* a generic and efficient heap                                             */
2
3 /* Copyright (c) 2004, 2005, 2007, 2008, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "xbt/sysdep.h"
10 #include "xbt/log.h"
11 #include "heap_private.h"
12
13 #include <stdio.h>
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_heap, xbt, "Heap");
15
16 static void xbt_heap_max_heapify(xbt_heap_t H);
17 static void xbt_heap_increase_key(xbt_heap_t H, int i);
18
19 /** @addtogroup XBT_heap
20  *  \brief This section describes the API to generic heap with O(log(n)) access.
21  */
22
23 /**
24  * @brief Creates a new heap.
25  * \param init_size initial size of the heap
26  * \param free_func function to call on each element when you want to free
27  *             the whole heap (or NULL if nothing to do).
28  *
29  * Creates a new heap.
30  */
31 XBT_INLINE xbt_heap_t xbt_heap_new(int init_size,
32                                    void_f_pvoid_t const free_func)
33 {
34   xbt_heap_t H = xbt_new0(struct xbt_heap, 1);
35   H->size = init_size;
36   H->count = 0;
37   H->items = (xbt_heap_item_t) xbt_new0(struct xbt_heap_item, init_size);
38   H->free = free_func;
39   return H;
40 }
41
42 /**
43  * @brief Set the update callback function.
44  * @param H the heap we're working on
45  * \param update_callback function to call on each element to update its index when needed.
46  */
47 XBT_INLINE void xbt_heap_set_update_callback(xbt_heap_t H,
48                                              void (*update_callback) (void
49                                                                       *,
50                                                                       int))
51 {
52   H->update_callback = update_callback;
53 }
54
55
56 /**
57  * @brief kilkil a heap and its content
58  * @param H poor victim
59  */
60 void xbt_heap_free(xbt_heap_t H)
61 {
62   int i;
63   if (H->free)
64     for (i = 0; i < H->count; i++)
65       H->free(H->items[i].content);
66   free(H->items);
67   free(H);
68   return;
69 }
70
71 /**
72  * @brief returns the number of elements in the heap
73  * @param H the heap we're working on
74  * @return the number of elements in the heap
75  */
76 XBT_INLINE int xbt_heap_size(xbt_heap_t H)
77 {
78   return (H->count);
79 }
80
81 /**
82  * @brief Add an element into the heap.
83  * \param H the heap we're working on
84  * \param content the object you want to add to the heap
85  * \param key the key associated to this object
86  *
87  * The element with the smallest key is automatically moved at the top of the heap.
88  */
89 void xbt_heap_push(xbt_heap_t H, void *content, double key)
90 {
91   int count = ++(H->count);
92
93   int size = H->size;
94   xbt_heap_item_t item;
95
96   if (count > size) {
97     H->size = (size << 1) + 1;
98     H->items =
99         (void *) xbt_realloc(H->items,
100                          (H->size) * sizeof(struct xbt_heap_item));
101   }
102
103   item = &(H->items[count - 1]);
104   item->key = key;
105   item->content = content;
106   xbt_heap_increase_key(H, count - 1);
107   XBT_DEBUG("Heap has now %d elements and max elem is %g",xbt_heap_size(H),xbt_heap_maxkey(H));
108   return;
109 }
110
111 /**
112  * @brief Extracts from the heap and returns the element with the smallest key.
113  * \param H the heap we're working on
114  * \return the element with the smallest key
115  *
116  * Extracts from the heap and returns the element with the smallest
117  * key. The element with the next smallest key is automatically moved
118  * at the top of the heap.
119  */
120 void *xbt_heap_pop(xbt_heap_t H)
121 {
122   xbt_heap_item_t items = H->items;
123   int size = H->size;
124   void *max;
125
126   XBT_DEBUG("Heap has %d elements before extraction and max elem was %g",xbt_heap_size(H),xbt_heap_maxkey(H));
127
128   if (H->count == 0)
129     return NULL;
130
131   max = CONTENT(H, 0);
132
133   items[0] = items[(H->count) - 1];
134   (H->count)--;
135   xbt_heap_max_heapify(H);
136   if (H->count < size >> 2 && size > 16) {
137     size = (size >> 1) + 1;
138     H->items =
139         (void *) xbt_realloc(items,
140                          size * sizeof(struct xbt_heap_item));
141     H->size = size;
142   }
143
144   if (H->update_callback)
145     H->update_callback(max, -1);
146   return max;
147 }
148
149 /**
150  * @brief Extracts from the heap and returns the element at position i.
151  * \param H the heap we're working on
152  * \param i  element position
153  * \return the element at position i if ok, NULL otherwise
154  *
155  * Extracts from the heap and returns the element at position i. The heap is automatically reorded.
156  */
157 void *xbt_heap_remove(xbt_heap_t H, int i)
158 {
159   XBT_DEBUG("Heap has %d elements: extracting element %d",xbt_heap_size(H),i);
160
161   if ((i < 0) || (i > H->count - 1))
162     return NULL;
163   /* put element i at head */
164   if (i > 0) {
165     KEY(H, i) = MIN_KEY_VALUE;
166     xbt_heap_increase_key(H, i);
167   }
168
169   return xbt_heap_pop(H);
170 }
171
172 /**
173  * @brief returns the smallest key in the heap (heap unchanged)
174  * \param H the heap we're working on
175  *
176  * \return the smallest key in the heap without modifying the heap.
177  */
178 XBT_INLINE double xbt_heap_maxkey(xbt_heap_t H)
179 {
180   xbt_assert(H->count != 0, "Empty heap");
181   return KEY(H, 0);
182 }
183
184 /**
185  * @brief returns the value associated to the smallest key in the heap (heap unchanged)
186  * \param H the heap we're working on
187  *
188  * \return the value associated to the smallest key in the heap
189  * without modifying the heap.
190  */
191 void *xbt_heap_maxcontent(xbt_heap_t H)
192 {
193   xbt_assert(H->count != 0, "Empty heap");
194   return CONTENT(H, 0);
195 }
196
197 /* <<<< private >>>>
198  * \param H the heap we're working on
199  *
200  * Restores the heap property once an element has been deleted.
201  */
202 static void xbt_heap_max_heapify(xbt_heap_t H)
203 {
204   int i = 0;
205   int count = H->count;
206   xbt_heap_item_t items = H->items;
207
208   while (1) {
209     int greatest = i;
210     int l = LEFT(i);
211     int r = l + 1;
212     if (l < count && items[l].key < items[i].key)
213       greatest = l;
214     if (r < count && items[r].key < items[greatest].key)
215       greatest = r;
216     if (greatest != i) {
217       struct xbt_heap_item tmp = items[i];
218       items[i] = items[greatest];
219       items[greatest] = tmp;
220       if (H->update_callback)
221         H->update_callback(items[i].content, i);
222       i = greatest;
223     } else {
224       if (H->update_callback)
225         H->update_callback(items[i].content, i);
226       return;
227     }
228   }
229 }
230
231 /* <<<< private >>>>
232  * \param H the heap we're working on
233  * \param i an item position in the heap
234  *
235  * Moves up an item at position i to its correct position. Works only
236  * when called from xbt_heap_push. Do not use otherwise.
237  */
238 static void xbt_heap_increase_key(xbt_heap_t H, int i)
239 {
240   xbt_heap_item_t items = H->items;
241   int p = PARENT(i);
242   while (i > 0 && items[p].key > items[i].key) {
243     struct xbt_heap_item tmp = items[i];
244     items[i] = items[p];
245     items[p] = tmp;
246     if (H->update_callback)
247       H->update_callback(items[i].content, i);
248     i = p;
249     p = PARENT(i);
250   }
251   if (H->update_callback)
252     H->update_callback(items[i].content, i);
253   return;
254 }