⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 decisiontreenode.java

📁 Decision Tree Decision Tree Decision Tree
💻 JAVA
字号:
/* -------------------------------------------------------------------------- */
/*                                                                            */
/*                         DECISION TREE NODE                                 */
/*                                                                            */
/*                            Frans Coenen                                    */
/*                                                                            */
/*                        Thursday 8 November 2007                            */
/*                                                                            */
/*                    Department of Computer Science                          */
/*                     The University of Liverpool                            */
/*                                                                            */
/* -------------------------------------------------------------------------- */

//package lucsKDD_ARM;

// Class defining a decision tree node

public class DecisionTreeNode {
    /** Attribute represented by node (class if leaf node). */
    public short attNumber=0;
    /** Positive branch. */
    public DecisionTreeNode posBranch = null;
    /** Negative branch. */              
    public DecisionTreeNode negBranch = null;
    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -