-
Notifications
You must be signed in to change notification settings - Fork 0
/
newFeatureOfCard.cpp
175 lines (175 loc) · 4.03 KB
/
newFeatureOfCard.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
//#include"CardParase.h"
//#include"dataModel.h"
//#include<iostream>
//#include<fstream>
//#include<string>
//#include<vector>
//#define SIZE 40000
//#define INPUTFILE "C:\\Users\\root\\Desktop\\TensorFlow\\¾«×¼×ÊÖú\\train\\card_train10.txt"
//#define OUTPUTFILE "C:\\Users\\root\\Desktop\\TensorFlow\\¾«×¼×ÊÖú\\train\\cardFeature2.txt"
//
//using namespace std;
//vector<string> inputRecord;
//bool isRepeated(string str);
//DataModel* student[SIZE];
//
//int main(){
// ifstream file = ifstream(INPUTFILE, ios::in | ios::binary);
// ofstream of = ofstream(OUTPUTFILE, ios::out | ios::binary);
// string str;
// int cnt = 0;
// Date globalDate;
// globalDate.year = 2013;
// globalDate.mon = 9;
// globalDate.day = 1;
// globalDate.weekday = 7;
//
// Date startDate;
// startDate.year = 2014;
// startDate.mon = 9;
// startDate.day = 1;
//
//
// Date endDate;
// endDate.year = 2015;
// endDate.mon = 9;
// endDate.day = 1;
//
// if (!file||!of){
// cout << "file open fail" << endl;
// return 0;
// }
//
//
// while (getline(file, str)){
// if (isRepeated(str)){
// continue;
// }
//
// Card card(str);
// if (card._date->compare(startDate) == -1){
// cnt++;
// if ((cnt % 10000) == 0){
// cout << cnt << endl;
// }
// continue;
// }
//
// if (card.consume != "POSÏû·Ñ"){
// continue;
// }
// Date* date = card._date;
// while (!(globalDate==*date)){
// globalDate = globalDate.nextDay();
// }
// if (globalDate == endDate){
// break;
// }
//
// date->weekday = globalDate.weekday;
//
// if (student[card.id] == NULL){
// student[card.id] = new DataModel();
// }
// student[card.id]->consume(date->mon, card.money, card.remain, card.good, date->weekday);
// cnt++;
// if ((cnt % 10000) == 0){
// cout << cnt << endl;
// }
// }
//
// file.close();
//
// cnt = 0;
//
// for (int i = 0; i < SIZE; i++){
// if (student[i] != NULL){
// if (student[i]->isAvailable() == false){
// continue;
// }
// of << i << ' ';
// //total consume money
// DataModel* data = student[i];
// for (int j = 0; j < 12; j++){
// of << data->getTotalConsume(j) << ' ';
// }
// //consume time
// for (int j = 0; j < 12; j++){
// of << data->getConsumeTime(j) << ' ';
// }
// //average consume money
// for (int j = 0; j < 12; j++){
// of << data->getAvgConsume(j) << ' ';
// }
// //max consume
// for (int j = 0; j < 12; j++){
// of << data->getMaxConsume(j) << ' ';
// }
// //min consume
// for (int j = 0; j < 12; j++){
// of << data->getMinConsume(j) << ' ';
// }
// //max remain
// for (int j = 0; j < 12; j++){
// of << data->getMaxRemain(j) << ' ';
// }
// //min remain
// for (int j = 0; j < 12; j++){
// of << data->getMinRemain(j) << ' ';
// }
// //average remain
// for (int j = 0; j < 12; j++){
// of << data->getAvgRemain(j) << ' ';
// }
// //12 kinds of good
// for (int j = 0; j < 12; j++){
// for (int k = 0; k < 12; k++){
// of << data->getGootTime(j, data->Good[k]) << ' ';
// }
// }
// for (int j = 0; j < 12; j++){
// for (int k = 0; k < 12; k++){
// of << data->getGoodConsume(j, data->Good[k]) << ' ';
// }
// }
// //weekday consume
// for (int j = 0; j < 12; j++){
// of << data->getWeekdayConsume(j) << ' ';
// }
// for (int j = 0; j < 12; j++){
// of << data->getWeekdayCnt(j) << ' ';
// }
// for (int j = 0; j < 12; j++){
// of << data->getWeekdayAvg(j) << ' ';
// }
// for (int j = 0; j < 12; j++){
// of << data->getWeekendConsume(j) << ' ';
// }
// for (int j = 0; j < 12; j++){
// of << data->getWeekendCnt(j) << ' ';
// }
// for (int j = 0; j < 12; j++){
// of << data->getWeekendAvg(j) << ' ';
// }
// of << endl;
// cnt++;
// }
// }
// of.close();
//}
//
//bool isRepeated(string str){
// vector<string>::iterator it;
// it = find(inputRecord.begin(), inputRecord.end(), str);
// if (it == inputRecord.end()){
// inputRecord.push_back(str);
// if (inputRecord.size() > 10){
// inputRecord.erase(inputRecord.begin());
// }
// return false;;
// }
// else{
// inputRecord.erase(it);
// return true;
// }
//}