summaryrefslogtreecommitdiff
path: root/include/PLList.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/PLList.h')
-rw-r--r--include/PLList.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/PLList.h b/include/PLList.h
new file mode 100644
index 0000000..6e9af25
--- /dev/null
+++ b/include/PLList.h
@@ -0,0 +1,33 @@
+#ifndef __PLLIST_H__
+#define __PLLIST_H__
+
+#include <PCommon.h>
+#include <SList.h>
+
+#ifdef __cplusplus
+class PLList:public PriorityList { private:
+ SList Head;
+
+ public:
+ PLList(void);
+ ~PLList(void);
+
+ virtual Key_t ReadKey(Cell C);
+ virtual Datas_t ReadDatas(Cell C);
+ virtual int rn(void);
+
+ virtual void Dump(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);
+};
+
+#else
+#error This librairy is will only compile with a C++ compiler.
+#endif
+#endif