Pacchetto | mx.utils |
Classe | public class LinkedList |
Ereditarietà | LinkedList Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
head : LinkedListNode [sola lettura]
Node representing head of the list. | LinkedList | ||
length : Number [sola lettura]
Returns length of list. | LinkedList | ||
tail : LinkedListNode [sola lettura]
Node representing tail of the list. | LinkedList |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | LinkedList | ||
Searches through all nodes for the given value. | LinkedList | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Inserts new node after a previously existing node. | LinkedList | ||
Inserts new node before a previously existing node. | LinkedList | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Removes the node at the tail of the list. | LinkedList | ||
Indica se la proprietà specificata esiste ed è enumerabile. | 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 | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Removes the node at the head of the list. | LinkedList | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Push a new node to the head of list. | LinkedList | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
head | proprietà |
head:LinkedListNode
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Node representing head of the list.
Implementazione
public function get head():LinkedListNode
length | proprietà |
tail | proprietà |
tail:LinkedListNode
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Node representing tail of the list.
Implementazione
public function get tail():LinkedListNode
LinkedList | () | Funzione di costruzione |
public function LinkedList()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Constructor.
find | () | metodo |
public function find(value:*):LinkedListNode
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Searches through all nodes for the given value.
Parametri
value:* — The value to find.
|
LinkedListNode — The node location.
|
insertAfter | () | metodo |
public function insertAfter(value:*, prev:LinkedListNode):LinkedListNode
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Inserts new node after a previously existing node.
Parametri
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 | () | metodo |
public function insertBefore(value:*, next:LinkedListNode):LinkedListNode
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Inserts new node before a previously existing node.
Parametri
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 | () | metodo |
public function pop():LinkedListNode
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Removes the node at the tail of the list.
RestituisceLinkedListNode — The removed node.
|
push | () | metodo |
public function push(value:*):LinkedListNode
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Push a new node to the tail of list.
Parametri
value:* — The value to append.
|
LinkedListNode — The newly appended node.
|
remove | () | metodo |
public function remove(value:*):LinkedListNode
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Searches through all nodes for the given value and removes it from the list if found.
Parametri
value:* — The value to find and remove.
|
LinkedListNode — The removed node, null otherwise.
|
shift | () | metodo |
public function shift():LinkedListNode
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Removes the node at the head of the list.
RestituisceLinkedListNode — The removed node.
|
unshift | () | metodo |
public function unshift(value:*):LinkedListNode
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Push a new node to the head of list.
Parametri
value:* — The value to append.
|
LinkedListNode — The newly appended node.
|
Tue Jun 12 2018, 02:44 PM Z