-
Notifications
You must be signed in to change notification settings - Fork 0
/
libreryTypeSearch.cpp
54 lines (54 loc) · 1.08 KB
/
libreryTypeSearch.cpp
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
44
45
46
47
48
49
50
51
52
53
54
//#include<fstream>
//#include<iostream>
//#include<string>
//#include<stdio.h>
//#include<sstream>
//#include<vector>
//#define INPUTFILE "C:\\Users\\root\\Desktop\\TensorFlow\\¾«×¼×ÊÖú\\train\\library_train.txt"
//
//using namespace std;
//
//int main(){
// ifstream file(INPUTFILE, ios::in | ios::binary);
// vector<string> doorType;
//
// if (!file){
// cout << "file open fail" << endl;
// return 0;
// }
//
// string str;
// string door;
// int cnt = 0;
//
// while (getline(file, str)){
// size_t pos = 0;
// size_t beg = 0;
//
// pos = str.find(',', pos) + 1; //skip id
//
// beg = pos;
// pos = str.find(',', pos);
// door = str.substr(beg, pos - beg);
//
// if (find(doorType.begin(), doorType.end(), door) == doorType.end()){
// doorType.push_back(door);
// }
//
// cnt++;
// if ((cnt % 3000) == 0){
// cout << cnt << endl;
// cout << "door " << doorType.size() << endl;
// }
//
// if (cnt == 200000) break;
// }
//
// file.close();
//
// cout << "door type" << endl;
// for (int i = 0; i < doorType.size(); i++){
// cout << doorType[i] << ' ';
// }
// cout << endl;
//}