Pakket | mx.utils |
Klasse | public class LinkedList |
Overerving | LinkedList Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
head : LinkedListNode [alleen-lezen]
Node representing head of the list. | LinkedList | ||
length : Number [alleen-lezen]
Returns length of list. | LinkedList | ||
tail : LinkedListNode [alleen-lezen]
Node representing tail of the list. | LinkedList |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | LinkedList | ||
Searches through all nodes for the given value. | LinkedList | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Inserts new node after a previously existing node. | LinkedList | ||
Inserts new node before a previously existing node. | LinkedList | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Removes the node at the tail of the list. | LinkedList | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Push a new node to the tail of list. | LinkedList | ||
Searches through all nodes for the given value and
removes it from the list if found. | LinkedList | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Removes the node at the head of the list. | LinkedList | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Push a new node to the head of list. | LinkedList | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
head | eigenschap |
head:LinkedListNode
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Node representing head of the list.
Implementatie
public function get head():LinkedListNode
length | eigenschap |
tail | eigenschap |
tail:LinkedListNode
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Node representing tail of the list.
Implementatie
public function get tail():LinkedListNode
LinkedList | () | Constructor |
public function LinkedList()
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Constructor.
find | () | methode |
public function find(value:*):LinkedListNode
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Searches through all nodes for the given value.
Parameters
value:* — The value to find.
|
LinkedListNode — The node location.
|
insertAfter | () | methode |
public function insertAfter(value:*, prev:LinkedListNode):LinkedListNode
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Inserts new node after a previously existing node.
Parameters
value:* — Value to insert. If the value is not a LinkedListNode
one will be created.
| |
prev:LinkedListNode — The previous node to insert relative to.
|
LinkedListNode — The new node.
|
insertBefore | () | methode |
public function insertBefore(value:*, next:LinkedListNode):LinkedListNode
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Inserts new node before a previously existing node.
Parameters
value:* — Value to insert. If the value is not a LinkedListNode
one will be created.
| |
next:LinkedListNode — The node to insert relative to.
|
LinkedListNode — The new node.
|
pop | () | methode |
public function pop():LinkedListNode
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Removes the node at the tail of the list.
Geretourneerde waardeLinkedListNode — The removed node.
|
push | () | methode |
public function push(value:*):LinkedListNode
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Push a new node to the tail of list.
Parameters
value:* — The value to append.
|
LinkedListNode — The newly appended node.
|
remove | () | methode |
public function remove(value:*):LinkedListNode
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Searches through all nodes for the given value and removes it from the list if found.
Parameters
value:* — The value to find and remove.
|
LinkedListNode — The removed node, null otherwise.
|
shift | () | methode |
public function shift():LinkedListNode
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Removes the node at the head of the list.
Geretourneerde waardeLinkedListNode — The removed node.
|
unshift | () | methode |
public function unshift(value:*):LinkedListNode
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4.5 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Push a new node to the head of list.
Parameters
value:* — The value to append.
|
LinkedListNode — The newly appended node.
|
Wed Jun 13 2018, 11:42 AM Z