cursornode.java
来自「Data StructuresAnd Algorithm Analysis In」· Java 代码 · 共 25 行
JAVA
25 行
package DataStructures;
// Basic node stored in a linked list -- cursor version
// Note that this class is not accessible outside
// of package DataStructures
class CursorNode
{
// Constructors
CursorNode( Object theElement )
{
this( theElement, 0 );
}
CursorNode( Object theElement, int n )
{
element = theElement;
next = n;
}
// Friendly data; accessible by other package routines
Object element;
int next;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?