我读到的是:Binomial queue 行动here。
联系的底部是指
B. 血清
- deletemin operation requires ability to find all subtrees of the root. Thus children of each node should be available (say a linked list)
- deletemin requires that the children be ordered by the size of their subtrees.
- we need to make sure it is easy to merge tress. Two binomial trees can be merged only if they have the same size, hence the size of the tree must be stored in the root. While merging, one of the trees becomes the last child of the other, so we should keep track of the last child of each node. A good data structure to use is a circular doubly linked list what each node is of the following form:
data | first |left | right |rank No. of | -------------------------------------------- child |sibling |sibling| children
以上是作者所称的“No. Of? 如果有的话,请作解释。