📄 binomialnode.java
字号:
package DataStructures;
// Basic node stored in binomial queues
// Note that this class is not accessible outside
// of package DataStructures
class BinomialNode
{
// Constructors
BinomialNode( Comparable theElement )
{
this( theElement, null, null );
}
BinomialNode( Comparable theElement, BinomialNode lt, BinomialNode nt )
{
element = theElement;
leftChild = lt;
nextSibling = nt;
}
// Friendly data; accessible by other package routines
Comparable element; // The data in the node
BinomialNode leftChild; // Left child
BinomialNode nextSibling; // Right child
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -