home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / include / queues.h < prev    next >
C/C++ Source or Header  |  2000-09-14  |  2KB  |  62 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17.  
  18. /*
  19.   Code for generell handling of priority Queues.
  20.   Implemention of queues from "Algoritms in C" by Robert Sedgewick.
  21.   Copyright Monty Program KB.
  22.   By monty.
  23. */
  24.  
  25. #ifndef _queues_h
  26. #define _queues_h
  27. #ifdef    __cplusplus
  28. extern "C" {
  29. #endif
  30.  
  31. typedef struct st_queue {
  32.   byte **root;
  33.   void *first_cmp_arg;
  34.   uint elements;
  35.   uint max_elements;
  36.   uint offset_to_key;            /* compare is done on element+offset */
  37.   int max_at_top;            /* Set if queue_top gives max */
  38.   int  (*compare)(void *, byte *,byte *);
  39. } QUEUE;
  40.  
  41. #define queue_top(queue) ((queue)->root[1])
  42. #define queue_element(queue,index) ((queue)->root[index+1])
  43. #define queue_end(queue) ((queue)->root[(queue)->elements])
  44. #define queue_replaced(queue) _downheap(queue,1)
  45.  
  46. int init_queue(QUEUE *queue,uint max_elements,uint offset_to_key,
  47.            pbool max_at_top, int (*compare)(void *,byte *, byte *),
  48.            void *first_cmp_arg);
  49. int reinit_queue(QUEUE *queue,uint max_elements,uint offset_to_key,
  50.                  pbool max_at_top, int (*compare)(void *,byte *, byte *),
  51.                  void *first_cmp_arg);
  52. void delete_queue(QUEUE *queue);
  53. void queue_insert(QUEUE *queue,byte *element);
  54. byte *queue_remove(QUEUE *queue,uint idx);
  55. void _downheap(QUEUE *queue,uint idx);
  56. #define is_queue_inited(queue) ((queue)->root != 0)
  57.  
  58. #ifdef    __cplusplus
  59. }
  60. #endif
  61. #endif
  62.