* they are not updated as the tree is modified.
*/
public FPTree(LongArrayList attrCountList, long minSupport) {
this.root = new FPNode(null, -1, 0);
this.attrCountList = attrCountList;
this.attrNodeLists = new OpenIntObjectHashMap();
this.minSupport = minSupport;
}