我的文件内容是:
1,2,5
2,4
2,3
1,2,4
1,3
2,3
1,3
1,2,3,5
1,2,3
我的代码是:
#include<iostream>
#include<set>
#include<vector>
#include<fstream>
#include<sstream>
#include<set>
#include<cstdlib>
#include<algorithm>
using namespace std;
struct store {
string a;
int count;
};
int main() {
store ap[100];
vector<string> v;
set<string> input;
int mycount;
ifstream fin("trans.txt");
string line, s, str1, token;
while(!fin.eof()) {
fin >> line;
// cout<<"i cant understand but correct"<<line<<endl;
istringstream str1(line);
while(getline(str1, token, ',')) {
//cout<<"the token are\t"<<token<<endl;
v.push_back(token);
input.insert(token);
}
//v.push_back(token);
//input.insert(token);
int i = 0;
for(set<string>::iterator it = input.begin(); it != input.end(); it++) {
mycount = count(v.begin(), v.end(), *it);
s = *it;
ap[i].a = s;
ap[i].count = mycount;
cout << ap[i].a << "\t" << "mycount" << ap[i].a << endl;
i++;
}
}
}
我正在实现 Apriori 算法,每行代表事务,即存储在文件中的项目我的文件由这样的数字组成,如何存储每个数字的出现及其计数
我的输出应该是这样的:
1 6
2 7
3 7
4 2
5 2
但是我无法单独存储我的意思是 1 及其所有出现 2 及其所有出现等等等。
谁能告诉我如何像上面的例子一样存储