queues.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  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.   Code for generell handling of priority Queues.
  19.   Implemention of queues from "Algoritms in C" by Robert Sedgewick.
  20.   Copyright Monty Program KB.
  21.   By monty.
  22. */
  23. #ifndef _queues_h
  24. #define _queues_h
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. typedef struct st_queue {
  29.   byte **root;
  30.   void *first_cmp_arg;
  31.   uint elements;
  32.   uint max_elements;
  33.   uint offset_to_key; /* compare is done on element+offset */
  34.   int max_at_top; /* Set if queue_top gives max */
  35.   int  (*compare)(void *, byte *,byte *);
  36. } QUEUE;
  37. #define queue_top(queue) ((queue)->root[1])
  38. #define queue_element(queue,index) ((queue)->root[index+1])
  39. #define queue_end(queue) ((queue)->root[(queue)->elements])
  40. #define queue_replaced(queue) _downheap(queue,1)
  41. int init_queue(QUEUE *queue,uint max_elements,uint offset_to_key,
  42.        pbool max_at_top, int (*compare)(void *,byte *, byte *),
  43.        void *first_cmp_arg);
  44. int reinit_queue(QUEUE *queue,uint max_elements,uint offset_to_key,
  45.                  pbool max_at_top, int (*compare)(void *,byte *, byte *),
  46.                  void *first_cmp_arg);
  47. void delete_queue(QUEUE *queue);
  48. void queue_insert(QUEUE *queue,byte *element);
  49. byte *queue_remove(QUEUE *queue,uint idx);
  50. void _downheap(QUEUE *queue,uint idx);
  51. #define is_queue_inited(queue) ((queue)->root != 0)
  52. #ifdef __cplusplus
  53. }
  54. #endif
  55. #endif