?? aprioritapp.java
字號:
/* ----------------------------------------------------------- *//* *//* APRIORI-T APPLICATION *//* *//* Frans Coenen *//* *//* 12 July 2002 *//* *//* Department of Computer Science *//* The University of Liverpool *//* */ /* ----------------------------------------------------------- */import java.io.*;public class AprioriTapp { // ------------------- FIELDS ------------------------ // None // ---------------- CONSTRUCTORS --------------------- // None // ------------------ METHODS ------------------------ public static void main(String[] args) throws IOException { // Create instance of class TotalSupportTree TotalSupportTree newAprioriT = new TotalSupportTree(args); // Read data to be mined from file newAprioriT.inputDataSet(); // Mine data and produce T-tree double time1 = (double) System.currentTimeMillis(); newAprioriT.createTotalSupportTree(); newAprioriT.outputDuration(time1,(double) System.currentTimeMillis()); // Output newAprioriT.outputTtree(); newAprioriT.outputNumFreqSets(); newAprioriT.outputNumUpdates(); newAprioriT.outputStorage(); newAprioriT.outputFrequentSets(); // Generate ARs newAprioriT.generateARs(); newAprioriT.getCurrentRuleListObject().outputRules(); // End System.exit(0); } }
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -