Singly linked list of int.
public var i:int = 0 int data
public var next:SLLint = null Next pointer of list
public function SLLint(i:int = 0) Constructor
Parameters
public static function alloc(i:int = 0):SLLint Allocator
Parameters
Returns
public static function allocList(size:int, defaultData:int = 0):SLLint Allocator of linked list
Parameters
| size:int |
| |
| defaultData:int (default = 0) |
Returns
public static function allocRing(size:int, defaultData:int = 0):SLLint Allocator of ring-linked list
Parameters
| size:int |
| |
| defaultData:int (default = 0) |
Returns
public static function createListPager(firstElem:SLLint, fixedSize:Boolean):Vector Create pager of linked list
Parameters
| firstElem:SLLint |
| |
| fixedSize:Boolean |
Returns
public static function createRingPager(firstElem:SLLint, fixedSize:Boolean):Vector Create pager of ring-linked list
Parameters
| firstElem:SLLint |
| |
| fixedSize:Boolean |
Returns
public static function free(elem:SLLint):void Deallocator
Parameters
public static function freeList(firstElem:SLLint):void Deallocator of linked list
Parameters
public static function freeRing(firstElem:SLLint):void Deallocator of ring-linked list
Parameters
public static function newRing(... args):SLLint Ring-linked list with initial values.
Parameters
Returns