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

hashMapInfos.h « TERsrc « mert - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4a46acf80a28b46f4a96a5b22441a33b3c390b5 (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
/*
 * Generic hashmap manipulation functions
 */
#ifndef __HASHMAPINFOS_H__
#define __HASHMAPINFOS_H__

#include "infosHasher.h"
#include <vector>
#include <string>
#include <sstream>
#include <fstream>

using namespace std;

namespace HashMapSpace
{
class hashMapInfos
{
private:
  vector<infosHasher> m_hasher;

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

}

#endif  // __HASHMAPINFOS_H__