All Packages  Class Hierarchy  This Package  Previous  Next  Index  WEKA's home

Class weka.classifiers.DecisionTable.LinkedList

java.lang.Object
    |
    +----weka.core.FastVector
            |
            +----weka.classifiers.DecisionTable.LinkedList

public class DecisionTable.LinkedList
extends FastVector
Class for handling a linked list. Used in best first search. Extends the Vector class.


Constructor Index

 o DecisionTable.LinkedList(DecisionTable)
 

Method Index

 o addToList(BitSet, double)
Aadds an element (Link) to the list.
 o getLinkAt(int)
Returns the element (Link) at a specific index from the list.
 o removeLinkAt(int)
Removes an element (Link) at a specific index from the list.

Constructor Detail

 o DecisionTable.LinkedList
public DecisionTable.LinkedList(DecisionTable this$0)

Method Detail

 o removeLinkAt
public void removeLinkAt(int index) throws java.lang.Exception
          Removes an element (Link) at a specific index from the list.
Parameters:
index - the index of the element to be removed.
 o getLinkAt
public DecisionTable.Link getLinkAt(int index) throws java.lang.Exception
          Returns the element (Link) at a specific index from the list.
Parameters:
index - the index of the element to be returned.
 o addToList
public void addToList(java.util.BitSet gr,
                      double mer)
          Aadds an element (Link) to the list.
Parameters:
gr - the feature set specification
mer - the "merit" of this feature set

All Packages  Class Hierarchy  This Package  Previous  Next  Index  WEKA's home