Property | Defined By | ||
---|---|---|---|
i : int = 0 int data | SLLint | ||
next : SLLint = null Next pointer of list | SLLint |
Method | Defined By | ||
---|---|---|---|
SLLint(i:int = 0) Constructor | SLLint | ||
[static] Allocator | SLLint | ||
[static] Allocator of linked list | SLLint | ||
[static] Allocator of ring-linked list | SLLint | ||
[static] Create pager of linked list | SLLint | ||
[static] Create pager of ring-linked list | SLLint | ||
[static] Deallocator | SLLint | ||
[static] Deallocator of linked list | SLLint | ||
[static] Deallocator of ring-linked list | SLLint | ||
[static] Ring-linked list with initial values. | SLLint |
i | property |
public var i:int = 0
int data
next | property |
public var next:SLLint = null
Next pointer of list
SLLint | () | Constructor |
public function SLLint(i:int = 0)
Constructor
Parametersi:int (default = 0 )
|
alloc | () | method |
public static function alloc(i:int = 0):SLLint
Allocator
Parameters
i:int (default = 0 )
|
SLLint |
allocList | () | method |
public static function allocList(size:int, defaultData:int = 0):SLLint
Allocator of linked list
Parameters
size:int | |
defaultData:int (default = 0 )
|
SLLint |
allocRing | () | method |
public static function allocRing(size:int, defaultData:int = 0):SLLint
Allocator of ring-linked list
Parameters
size:int | |
defaultData:int (default = 0 )
|
SLLint |
createListPager | () | method |
public static function createListPager(firstElem:SLLint, fixedSize:Boolean):Vector.<SLLint>
Create pager of linked list
Parameters
firstElem:SLLint | |
fixedSize:Boolean |
Vector.<SLLint> |
createRingPager | () | method |
public static function createRingPager(firstElem:SLLint, fixedSize:Boolean):Vector.<SLLint>
Create pager of ring-linked list
Parameters
firstElem:SLLint | |
fixedSize:Boolean |
Vector.<SLLint> |
free | () | method |
freeList | () | method |
public static function freeList(firstElem:SLLint):void
Deallocator of linked list
Parameters
firstElem:SLLint |
freeRing | () | method |
public static function freeRing(firstElem:SLLint):void
Deallocator of ring-linked list
Parameters
firstElem:SLLint |
newRing | () | method |
public static function newRing(... args):SLLint
Ring-linked list with initial values.
Parameters
... args |
SLLint |