2010-11-05 04:17:08 +02:00
|
|
|
#include <algorithm>
|
2010-10-25 05:12:47 +03:00
|
|
|
#include <cassert>
|
2010-10-28 03:17:09 +03:00
|
|
|
#include <string>
|
2010-10-25 05:12:47 +03:00
|
|
|
#include <vector>
|
|
|
|
|
2011-05-23 21:01:08 +03:00
|
|
|
#include "mph_index.h"
|
2010-10-25 05:12:47 +03:00
|
|
|
|
2010-10-28 03:17:09 +03:00
|
|
|
using std::string;
|
2010-10-25 05:12:47 +03:00
|
|
|
using std::vector;
|
2012-03-12 06:43:06 +02:00
|
|
|
using namespace cxxmph;
|
2010-10-25 05:12:47 +03:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2010-10-28 05:45:43 +03:00
|
|
|
|
|
|
|
srand(1);
|
2010-10-28 03:17:09 +03:00
|
|
|
vector<string> keys;
|
|
|
|
keys.push_back("davi");
|
|
|
|
keys.push_back("paulo");
|
|
|
|
keys.push_back("joao");
|
|
|
|
keys.push_back("maria");
|
|
|
|
keys.push_back("bruno");
|
2010-10-29 03:53:40 +03:00
|
|
|
keys.push_back("paula");
|
|
|
|
keys.push_back("diego");
|
|
|
|
keys.push_back("diogo");
|
|
|
|
keys.push_back("algume");
|
2010-10-25 05:12:47 +03:00
|
|
|
|
2011-05-23 21:01:08 +03:00
|
|
|
SimpleMPHIndex<string> mph_index;
|
2012-03-12 04:21:18 +02:00
|
|
|
if (!mph_index.Reset(keys.begin(), keys.end(), keys.size())) { exit(-1); }
|
2010-10-25 05:12:47 +03:00
|
|
|
vector<int> ids;
|
2010-10-28 03:17:09 +03:00
|
|
|
for (vector<int>::size_type i = 0; i < keys.size(); ++i) {
|
2011-05-23 21:01:08 +03:00
|
|
|
ids.push_back(mph_index.index(keys[i]));
|
2010-10-28 03:17:09 +03:00
|
|
|
cerr << " " << *(ids.end() - 1);
|
|
|
|
}
|
|
|
|
cerr << endl;
|
2010-10-25 05:12:47 +03:00
|
|
|
sort(ids.begin(), ids.end());
|
2010-10-28 03:17:09 +03:00
|
|
|
for (vector<int>::size_type i = 0; i < ids.size(); ++i) assert(ids[i] == static_cast<vector<int>::value_type>(i));
|
2011-05-23 21:01:08 +03:00
|
|
|
char* serialized = new char[mph_index.serialize_bytes_needed()];
|
|
|
|
mph_index.serialize(serialized);
|
|
|
|
SimpleMPHIndex<string> other_mph_index;
|
|
|
|
other_mph_index.deserialize(serialized);
|
2010-10-25 05:12:47 +03:00
|
|
|
}
|