ptreenodetop.java

来自「多关联分类算法」· Java 代码 · 共 43 行

JAVA
43
字号
/* -------------------------------------------------------------------------- *//*                                                                            *//*          P A R T I A L   S U P P O R T   T R E E  N O D E   T O P          *//*                                                                            *//*                               Frans Coenen                                 *//*                                                                            *//*                          Wednesday 9 January 2003                          *//*                             (Revised 5/7/2003)                             *//*                                                                            *//*                       Department of Computer Science                       *//*                        The University of Liverpool                         *//*                                                                            *//* -------------------------------------------------------------------------- *//** Top level Ptree node structure. <P> An array of such structures is created in which to store the top level of the Ptree. @author Frans Coenen@version 5 July 2003 */public class PtreeNodeTop {        /*------------------------------------------------------------------------*/    /*                                                                        */    /*                                   FIELDS                               */    /*                                                                        */    /*------------------------------------------------------------------------*/        /** Partial support for the rows. */    public int support = 1;	    /** Pointer to child structure. */    public PtreeNode childRef = null;	       /*---------------------------------------------------------------------*/    /*                                                                     */    /*                           CONSTRUCTORS                              */    /*                                                                     */    /*---------------------------------------------------------------------*/        /* Default constructor only. */           }

⌨️ 快捷键说明

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