pqueue.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:4k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* Priority queue functions.
  2.    Copyright (C) 2003 Yasuhiro Ohara
  3. This file is part of GNU Zebra.
  4. GNU Zebra is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published
  6. by the Free Software Foundation; either version 2, or (at your
  7. option) any later version.
  8. GNU Zebra is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Zebra; see the file COPYING.  If not, write to the
  14. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA.  */
  16. #include <zebra.h>
  17. #include "pqueue.h"
  18. /* priority queue using heap sort */
  19. /* pqueue->cmp() controls the order of sorting (i.e, ascending or
  20.    descending). If you want the left node to move upper of the heap
  21.    binary tree, make cmp() to return less than 0.  for example, if cmp
  22.    (10, 20) returns -1, the sorting is ascending order. if cmp (10,
  23.    20) returns 1, the sorting is descending order. if cmp (10, 20)
  24.    returns 0, this library does not do sorting (which will not be what
  25.    you want).  To be brief, if the contents of cmp_func (left, right)
  26.    is left - right, dequeue () returns the smallest node.  Otherwise
  27.    (if the contents is right - left), dequeue () returns the largest
  28.    node.  */
  29. #define DATA_SIZE (sizeof (void *))
  30. #define PARENT_OF(x) ((x - 1) / 2)
  31. #define LEFT_OF(x)  (2 * x + 1)
  32. #define RIGHT_OF(x) (2 * x + 2)
  33. #define HAVE_CHILD(x,q) (x < (q)->size / 2)
  34. static void
  35. trickle_up (int index, struct pqueue *queue)
  36. {
  37.   void *tmp;
  38.   /* Save current node as tmp node.  */
  39.   tmp = queue->array[index];
  40.   /* Continue until the node reaches top or the place where the parent
  41.      node should be upper than the tmp node.  */
  42.   while (index > 0 &&
  43.          (*queue->cmp) (tmp, queue->array[PARENT_OF (index)]) < 0)
  44.     {
  45.       /* actually trickle up */
  46.       queue->array[index] = queue->array[PARENT_OF (index)];
  47.       index = PARENT_OF (index);
  48.     }
  49.   /* Restore the tmp node to appropriate place.  */
  50.   queue->array[index] = tmp;
  51. }
  52. static void
  53. trickle_down (int index, struct pqueue *queue)
  54. {
  55.   void *tmp;
  56.   int which;
  57.   /* Save current node as tmp node.  */
  58.   tmp = queue->array[index];
  59.   /* Continue until the node have at least one (left) child.  */
  60.   while (HAVE_CHILD (index, queue))
  61.     {
  62.       /* If right child exists, and if the right child is more proper
  63.          to be moved upper.  */
  64.       if (RIGHT_OF (index) < queue->size &&
  65.           (*queue->cmp) (queue->array[LEFT_OF (index)],
  66.                          queue->array[RIGHT_OF (index)]) > 0)
  67.         which = RIGHT_OF (index);
  68.       else
  69.         which = LEFT_OF (index);
  70.       /* If the tmp node should be upper than the child, break.  */
  71.       if ((*queue->cmp) (queue->array[which], tmp) > 0)
  72.         break;
  73.       /* Actually trickle down the tmp node.  */
  74.       queue->array[index] = queue->array[which];
  75.       index = which;
  76.     }
  77.   /* Restore the tmp node to appropriate place.  */
  78.   queue->array[index] = tmp;
  79. }
  80. struct pqueue *
  81. pqueue_create ()
  82. {
  83.   struct pqueue *queue;
  84.   queue = (struct pqueue *) malloc (sizeof (struct pqueue));
  85.   memset (queue, 0, sizeof (struct pqueue));
  86.   queue->array = (void **)
  87.     malloc (DATA_SIZE * PQUEUE_INIT_ARRAYSIZE);
  88.   memset (queue->array, 0, DATA_SIZE * PQUEUE_INIT_ARRAYSIZE);
  89.   queue->array_size = PQUEUE_INIT_ARRAYSIZE;
  90.   return queue;
  91. }
  92. void
  93. pqueue_delete (struct pqueue *queue)
  94. {
  95.   free (queue->array);
  96.   free (queue);
  97. }
  98. static int
  99. pqueue_expand (struct pqueue *queue)
  100. {
  101.   void **newarray;
  102.   newarray = (void **) malloc (queue->array_size * DATA_SIZE * 2);
  103.   if (newarray == NULL)
  104.     return 0;
  105.   memset (newarray, 0, queue->array_size * DATA_SIZE * 2);
  106.   memcpy (newarray, queue->array, queue->array_size * DATA_SIZE);
  107.   free (queue->array);
  108.   queue->array = newarray;
  109.   queue->array_size *= 2;
  110.   return 1;
  111. }
  112. void
  113. pqueue_enqueue (void *data, struct pqueue *queue)
  114. {
  115.   if (queue->size + 2 >= queue->array_size && ! pqueue_expand (queue))
  116.     return;
  117.   queue->array[queue->size] = data;
  118.   trickle_up (queue->size, queue);
  119.   queue->size ++;
  120. }
  121. void *
  122. pqueue_dequeue (struct pqueue *queue)
  123. {
  124.   void *data = queue->array[0];
  125.   queue->array[0] =  queue->array[--queue->size];
  126.   trickle_down (0, queue);
  127.   return data;
  128. }