-
Notifications
You must be signed in to change notification settings - Fork 1
/
database.h
37 lines (31 loc) · 1.18 KB
/
database.h
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
/* 入力形式として1次元のみアイテムセットを許す
* 例 (1,2,3):10 はアイテムセット(1,2,3)と10の2次元イベントとする
* アイテムセットが存在しない場合はEventの後ろのvectorだけ使用する
* アイテムセットは必ず丸かっこで囲んでおくこと
*/
#ifndef DATABASE_H
#define DATABASE_H
#include <iostream>
#include <fstream>
#include <vector>
#include <sstream>
using namespace std;
using uint = unsigned int;
using Itemset = vector<uint>;
using Event = pair<Itemset, vector<uint>>;
class Database{
private:
vector<vector<Event> > mTransaction;
vector<double> mY;
public:
void read(const char *aFilename); //txtデータをlabelとtransactionの形にする.
void read_aaseq(const char *aFilename); //アミノ酸形式のtxtデータ(labelとaaseq)をlabelとtransactionの形にする.
vector<vector<Event> > get_transaction() const; //transactionを取り出す.
vector<double> get_y() const; //yを取り出す
template<class T, class U>
//sの中にvが含まれていればTrueを返す
bool contain(const std::basic_string<T>& s, const U& v){
return s.find(v) != std::basic_string<T>::npos;
}
};
#endif