queues.h
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. /*
  4.   Code for generell handling of priority Queues.
  5.   Implemention of queues from "Algoritms in C" by Robert Sedgewick.
  6.   Copyright Monty Program KB.
  7.   By monty.
  8. */
  9. #ifndef _queues_h
  10. #define _queues_h
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. typedef struct st_queue {
  15.   byte **root;
  16.   uint elements;
  17.   uint max_elements;
  18.   uint offset_to_key; /* compare is done on element+offset */
  19.   int max_at_top; /* Set if queue_top gives max */
  20.   int  (*compare)(byte *,byte *);
  21. } QUEUE;
  22. #define queue_top(queue) ((queue)->root[1])
  23. #define queue_element(queue,index) ((queue)->root[index+1])
  24. #define queue_end(queue) ((queue)->root[(queue)->elements])
  25. #define queue_replaced(queue) _downheap(queue,1)
  26. int init_queue(QUEUE *queue,uint max_elements,uint offset_to_key,
  27.        pbool max_at_top, int (*compare)(byte *,byte *));
  28. void delete_queue(QUEUE *queue);
  29. void queue_insert(QUEUE *queue,byte *element);
  30. byte *queue_remove(QUEUE *queue,uint index);
  31. void _downheap(QUEUE *queue,uint index);
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif