slbelden / 3020-Project3

Bin Packing
0 stars 0 forks source link

Create Tournament Tree Class #12

Closed slbelden closed 2 years ago

slbelden commented 9 years ago

Child nodes need to have a pointer to their parents. All nodes must be either full or leaves. Insertion of new nodes should be done on the right. A new level must only be created when the current level is full. (by tracking size of tree) Replaying the tournament after 1 change must be a log N operation.