this.treeList=null;
}
//构造一棵叶子结点的N叉树
public NaryTree(uint _degree,object _key)
{
this.key=_key;
this.degree=_degree;
this.treeList=new ArrayList();
this.treeList.Capacity=(int)_degree;
for(int i=0;i<this.treeList.Capacity;i++)
{
this.treeList.Add( this.GetEmptyInstance(_degree) );
}
}
//-----------------------------------------------------------------
protected virtual object GetEmptyInstance(uint _degree)