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.
DecisionTable.LinkedList(DecisionTable)
-
addToList(BitSet, double)
- Aadds an element (Link) to the list.
getLinkAt(int)
- Returns the element (Link) at a specific index from the list.
removeLinkAt(int)
- Removes an element (Link) at a specific index from the list.
DecisionTable.LinkedList
public DecisionTable.LinkedList(DecisionTable this$0)
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.
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.
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