Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hashMap.h « TERsrc « mert - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3e4578e5681ba32a92bf2fa618830582053b141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * Generic hashmap manipulation functions
 */

#ifndef __HASHMAP_H__
#define __HASHMAP_H__

#include "stringHasher.h"
#include <vector>
#include <string>
#include <sstream>
#include <fstream>
#include <locale>

using namespace std;

namespace HashMapSpace
{
class hashMap
{
private:
  vector<stringHasher> m_hasher;

public:
//     ~hashMap();
  long hashValue ( string key );
  int trouve ( long searchKey );
  int trouve ( string key );
  void addHasher ( string key, string value );
  stringHasher getHasher ( string key );
  string getValue ( string key );
  string searchValue ( string key );
  void setValue ( string key , string value );
  void printHash();
  vector<stringHasher> getHashMap();
  string printStringHash();
  string printStringHash2();
  string printStringHashForLexicon();
};

}

#endif  // __HASHMAP_H__