From 833d20a69fe17ab846c153e35230c66a41d8fca9 Mon Sep 17 00:00:00 2001 From: Pixel <> Date: Wed, 28 Feb 2001 11:40:25 +0000 Subject: Premier jet --- include/FHeap.h | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 include/FHeap.h (limited to 'include/FHeap.h') diff --git a/include/FHeap.h b/include/FHeap.h new file mode 100644 index 0000000..ac58a6d --- /dev/null +++ b/include/FHeap.h @@ -0,0 +1,40 @@ +#ifndef __FHEAP_H__ +#define __FHEAP_H__ +#include +#define DFMAX 128 + +#ifdef __cplusplus +typedef class FHeap:public PriorityList { + private: + FHeap * Father, *Child, *Left, *Right; + int Degree; + bool Mark; + + void Link(FHeap * x); + void Rebuild(void); + FHeap(Key_t IKey, Datas_t const &IDatas); // Insert + FHeap *Insert(FHeap * x); + void Cut(FHeap * x, FHeap * y); + void CascadeCut(FHeap * y); + + public: + FHeap(void); // Constructor + ~FHeap(void); // Destructor + + virtual int rn(void); + + virtual void Dump(ostream & os); + void RDump(ostream & os); + virtual bool IsEmpty(void); + + virtual Cell Min(void); + virtual Cell Insert(Key_t IKey, Datas_t const &IDatas); + virtual Key_t Extract_Min(Datas_t & Datas); + virtual PriorityList *Union(PriorityList * P); + virtual bool Lower_Key(Cell x, Key_t NKey); + virtual Key_t Delete(Datas_t & Datas, Cell x); +} FHeap; +#else +#error This librairy will only compile with a C++ compiler. +#endif +#endif -- cgit v1.2.3