heap.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these libraries and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /*
  24. * $XConsortium: heap.h /main/3 1996/06/11 17:17:11 cde-hal $
  25. *
  26. * Copyright (c) 1992 HaL Computer Systems, Inc. All rights reserved.
  27. * UNPUBLISHED -- rights reserved under the Copyright Laws of the United
  28. * States. Use of a copyright notice is precautionary only and does not
  29. * imply publication or disclosure.
  30. *
  31. * This software contains confidential information and trade secrets of HaL
  32. * Computer Systems, Inc. Use, disclosure, or reproduction is prohibited
  33. * without the prior express written permission of HaL Computer Systems, Inc.
  34. *
  35. * RESTRICTED RIGHTS LEGEND
  36. * Use, duplication, or disclosure by the Government is subject to
  37. * restrictions as set forth in subparagraph (c)(l)(ii) of the Rights in
  38. * Technical Data and Computer Software clause at DFARS 252.227-7013.
  39. * HaL Computer Systems, Inc.
  40. * 1315 Dell Avenue, Campbell, CA 95008
  41. *
  42. */
  43. #ifndef _heap_h
  44. #define _heap_h 1
  45. #include "utility/funcs.h"
  46. #include "utility/buffer.h"
  47. typedef void (*call_back_func_ptr_t)(int, void*);
  48. class heap : private buffer {
  49. public:
  50. heap(cmp_func_ptr_t eq, cmp_func_ptr_t ls, int exp_elements = 1000);
  51. virtual ~heap();
  52. // insert function, no heapifying action taken
  53. Boolean insert(voidPtr elm) ;
  54. Boolean insert_heapify(voidPtr elm) ;
  55. // make a heap out of inserted elements
  56. void heapify();
  57. // retrieve function
  58. void* max_elm() ;
  59. void adjust_max_to(voidPtr new_max_item);
  60. void delete_max(call_back_func_ptr_t call_back_func_t = 0);
  61. void remove(); // remove all elements
  62. // status function: number of elements in the heap
  63. int count() {
  64. return buffer::content_sz() / sizeof(voidPtr) - 1;
  65. };
  66. Boolean update() { return v_updated; };
  67. void adjust(int i, call_back_func_ptr_t call_back_func_t = 0);
  68. // iterator
  69. int first();
  70. voidPtr operator()(int ind);
  71. void next(int& ind);
  72. protected:
  73. void _delete_max(int i, voidPtr *heap_space);
  74. protected:
  75. Boolean v_updated;
  76. cmp_func_ptr_t f_cmp_func_eq;
  77. cmp_func_ptr_t f_cmp_func_ls;
  78. };
  79. typedef heap *heapPtr;
  80. #endif