Paquete | mx.utils |
Clase | public class LinkedList |
Herencia | LinkedList Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
head : LinkedListNode [solo lectura]
Node representing head of the list. | LinkedList | ||
length : Number [solo lectura]
Returns length of list. | LinkedList | ||
tail : LinkedListNode [solo lectura]
Node representing tail of the list. | LinkedList |
Método | Definido por | ||
---|---|---|---|
Constructor. | LinkedList | ||
Searches through all nodes for the given value. | LinkedList | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Inserts new node after a previously existing node. | LinkedList | ||
Inserts new node before a previously existing node. | LinkedList | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Removes the node at the tail of the list. | LinkedList | ||
Indica si existe la propiedad especificada y si es enumerable. | 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 | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Removes the node at the head of the list. | LinkedList | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Push a new node to the head of list. | LinkedList | ||
Devuelve el valor simple del objeto especificado. | Object |
head | propiedad |
head:LinkedListNode
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Node representing head of the list.
Implementación
public function get head():LinkedListNode
length | propiedad |
tail | propiedad |
tail:LinkedListNode
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Node representing tail of the list.
Implementación
public function get tail():LinkedListNode
LinkedList | () | Información sobre |
public function LinkedList()
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Constructor.
find | () | método |
public function find(value:*):LinkedListNode
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Searches through all nodes for the given value.
Parámetros
value:* — The value to find.
|
LinkedListNode — The node location.
|
insertAfter | () | método |
public function insertAfter(value:*, prev:LinkedListNode):LinkedListNode
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Inserts new node after a previously existing node.
Parámetros
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 | () | método |
public function insertBefore(value:*, next:LinkedListNode):LinkedListNode
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Inserts new node before a previously existing node.
Parámetros
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 | () | método |
public function pop():LinkedListNode
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Removes the node at the tail of the list.
Valor devueltoLinkedListNode — The removed node.
|
push | () | método |
public function push(value:*):LinkedListNode
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Push a new node to the tail of list.
Parámetros
value:* — The value to append.
|
LinkedListNode — The newly appended node.
|
remove | () | método |
public function remove(value:*):LinkedListNode
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Searches through all nodes for the given value and removes it from the list if found.
Parámetros
value:* — The value to find and remove.
|
LinkedListNode — The removed node, null otherwise.
|
shift | () | método |
public function shift():LinkedListNode
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Removes the node at the head of the list.
Valor devueltoLinkedListNode — The removed node.
|
unshift | () | método |
public function unshift(value:*):LinkedListNode
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Push a new node to the head of list.
Parámetros
value:* — The value to append.
|
LinkedListNode — The newly appended node.
|
Tue Jun 12 2018, 02:12 PM Z