資源簡介
Fuzzy TopDown FP-growth algorithm
模糊集挖掘算法(之前我發布的那個版本有誤)
此版本為修正版
代碼片段和文件信息
#include?“data.h“
ItemPair::ItemPair(){}
ItemPair::ItemPair(const?ItemPair&?pair){
this->itemId?=?pair.itemId;
this->itemWeight?=?pair.itemWeight;
}
ItemPair::ItemPair(int?itemId?double?itemWeight){
this->itemId?=?itemId;
this->itemWeight?=?itemWeight;
}
Data::Data(char*?fileName){
this->fileName?=?fileName;
setData(fileName);
}
DATA?Data::getData(){
return?this->data;
}
void?Data::setData(char*?fileName){
ifstream?fin(fileName);
if(?!fin?){
cout?<“File?open?error!“?< return?;
}
int?id;
double?weight;
while?(?!fin.eof()?){
Transaction?trans;
fin?>>?id;
fin?>>?weight;
while?((id?!=?0)?&&?(weight?!=?0)){
//cout<
ItemPair?pair(idweight);
trans.push_back(pair);
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????351744??2011-10-20?14:24??FuzzyTDFP-V3\Debug\FuzzyTDFP-V3.exe
?????文件????1007160??2011-10-20?14:24??FuzzyTDFP-V3\Debug\FuzzyTDFP-V3.ilk
?????文件????1862656??2011-10-20?14:24??FuzzyTDFP-V3\Debug\FuzzyTDFP-V3.pdb
?????文件???????1398??2011-10-19?16:50??FuzzyTDFP-V3\FuzzyTDFP-V3\data.cpp
?????文件????????581??2011-10-19?16:50??FuzzyTDFP-V3\FuzzyTDFP-V3\data.h
?????文件???????7016??2011-10-20?14:24??FuzzyTDFP-V3\FuzzyTDFP-V3\Debug\BuildLog.htm
?????文件?????430346??2011-10-19?16:50??FuzzyTDFP-V3\FuzzyTDFP-V3\Debug\data.obj
?????文件????1763951??2011-10-20?14:24??FuzzyTDFP-V3\FuzzyTDFP-V3\Debug\fptree.obj
?????文件????????621??2011-10-20?14:24??FuzzyTDFP-V3\FuzzyTDFP-V3\Debug\FuzzyTDFP-V3.exe.intermediate.manifest
?????文件?????260945??2011-10-20?11:18??FuzzyTDFP-V3\FuzzyTDFP-V3\Debug\item.obj
?????文件?????232190??2011-10-20?14:24??FuzzyTDFP-V3\FuzzyTDFP-V3\Debug\main.obj
?????文件?????????65??2011-10-20?14:24??FuzzyTDFP-V3\FuzzyTDFP-V3\Debug\mt.dep
?????文件?????297984??2011-10-20?14:24??FuzzyTDFP-V3\FuzzyTDFP-V3\Debug\vc90.idb
?????文件?????503808??2011-10-20?14:24??FuzzyTDFP-V3\FuzzyTDFP-V3\Debug\vc90.pdb
?????文件???????8967??2011-10-20?14:24??FuzzyTDFP-V3\FuzzyTDFP-V3\fptree.cpp
?????文件???????2551??2011-10-20?14:24??FuzzyTDFP-V3\FuzzyTDFP-V3\fptree.h
?????文件???????1990??2011-10-20?14:25??FuzzyTDFP-V3\FuzzyTDFP-V3\frequent.txt
?????文件???????4318??2011-10-19?17:04??FuzzyTDFP-V3\FuzzyTDFP-V3\FuzzyTDFP-V3.vcproj
?????文件???????1417??2011-10-20?14:34??FuzzyTDFP-V3\FuzzyTDFP-V3\FuzzyTDFP-V3.vcproj.andylau-PC.andylau.user
?????文件????????147??2011-10-19?16:08??FuzzyTDFP-V3\FuzzyTDFP-V3\input.txt
?????文件???????1586??2011-10-20?14:21??FuzzyTDFP-V3\FuzzyTDFP-V3\input1.txt
?????文件???????1476??2011-10-20?11:07??FuzzyTDFP-V3\FuzzyTDFP-V3\item.cpp
?????文件???????1708??2011-10-20?11:04??FuzzyTDFP-V3\FuzzyTDFP-V3\item.h
?????文件????????625??2011-10-20?14:24??FuzzyTDFP-V3\FuzzyTDFP-V3\main.cpp
?????文件???????1476??2011-10-20?14:25??FuzzyTDFP-V3\FuzzyTDFP-V3\output.txt
?????文件????????157??2011-10-20?11:45??FuzzyTDFP-V3\FuzzyTDFP-V3\readme.txt
?????文件????1977344??2011-10-20?14:34??FuzzyTDFP-V3\FuzzyTDFP-V3.ncb
?????文件????????902??2011-10-19?10:38??FuzzyTDFP-V3\FuzzyTDFP-V3.sln
????..A..H.?????26624??2011-10-20?14:34??FuzzyTDFP-V3\FuzzyTDFP-V3.suo
?????目錄??????????0??2011-10-20?14:24??FuzzyTDFP-V3\FuzzyTDFP-V3\Debug
............此處省略6個文件信息
- 上一篇:方波發生器由at89c51單片機連接
- 下一篇:RT5370驅動源碼
評論
共有 條評論