1# fishstan 总计1200多行,下面是前面几行,预览一下:import java.io.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
// Other packages
public class AprioriTgui extends JFrame implements ActionListener{
    /* ------ FIELDS ------ */
    // GUI features
    private BufferedReader fileInput;
    private JTextArea textArea;
    private JButton openButton, minSupport, runButton;
    /** Ttree node structure. <P> Arrays of these structures are used to store
    nodes at the same level in any sub-branch of the T-tree.  */
    protected class TtreeNode {
    
/** The support associate wuth the itemset represented by the node. */
        protected int support = 0;
/** A reference variable to the child (if any) of the node. */
protected TtreeNode[] childRef = null;
/** Default constructor */
protected TtreeNode() {
    }