Wm4TStringHashTable.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef WM4TSTRINGHASHTABLE_H
00018 #define WM4TSTRINGHASHTABLE_H
00019
00020 #include "Wm4FoundationLIB.h"
00021
00022
00023
00024
00025
00026
00027 #include "Wm4System.h"
00028
00029 namespace Wm4
00030 {
00031
00032 template <class TVALUE>
00033 class TStringHashTable
00034 {
00035 public:
00036
00037 TStringHashTable (int iTableSize);
00038 ~TStringHashTable ();
00039
00040
00041 int GetQuantity () const;
00042
00043
00044 bool Insert (const std::string& rkKey, const TVALUE& rtValue);
00045
00046
00047 TVALUE* Find (const std::string& rkKey) const;
00048
00049
00050 bool Remove (const std::string& rkKey);
00051 void RemoveAll ();
00052
00053
00054 TVALUE* GetFirst (std::string* pkKey) const;
00055 TVALUE* GetNext (std::string* pkKey) const;
00056
00057 private:
00058 class HashItem
00059 {
00060 public:
00061 HashItem () : m_kKey("") { }
00062
00063 std::string m_kKey;
00064 TVALUE m_tValue;
00065 HashItem* m_pkNext;
00066 };
00067
00068
00069 int HashFunction (const std::string& rkKey) const;
00070
00071
00072 int m_iTableSize;
00073 int m_iQuantity;
00074 HashItem** m_apkTable;
00075
00076
00077 mutable int m_iIndex;
00078 mutable HashItem* m_pkItem;
00079 };
00080
00081 }
00082
00083 #include "Wm4TStringHashTable.inl"
00084
00085 #endif