|
! Aware >
Perl >
Execution > Data structures (In memory) >
Data structures (In memory)
|
Home Subjects By activity User Interface Text Strings Math Processing
Stored Data
Communications
Hard World File System
|
Related Subjects (Perl) |
Head and Tail Lists Collection of items where the primary access (or addition or removal of items) is at one end of the list or the other. Common terms are "stacks", "queues", "LIFO lists" "FIFO" lists.
Lists and Sets Data structures implementing lists and sets.
Trees and Graphs Data structures implementing Trees and Graphs. (Each element references 0 or more other elements)
See also: Persistent data storage, databases - (data files, databases)
Up to Execution
(Perl delta 5.003 to 5.004) delete on slices
(Perl delta 5.003 to 5.004) keys as an lvalue
(Perl delta 5.003 to 5.004) pack() and unpack()
(Perl data structure cookbook) arrays of arrays
(Perl data structure cookbook) hashes of arrays
(Perl data structure cookbook) arrays of hashes
(Perl data structure cookbook) hashes of hashes
(Perl data structure cookbook) more elaborate constructs
(Perl data structure cookbook) REFERENCES
(Perl data structure cookbook) COMMON MISTAKES
(Perl data structure cookbook) CAVEAT ON PRECEDENCE
(Perl data structure cookbook) Why you should always
(Perl data structure cookbook) DEBUGGING
(Perl data structure cookbook) CODE EXAMPLES
(Perl data structure cookbook) LISTS OF LISTS
(Perl data structure cookbook) Declaration of a LIST OF LISTS
(Perl data structure cookbook) Generation of a LIST OF LISTS
(Perl data structure cookbook) Access and Printing of a LIST OF LISTS
(Perl data structure cookbook) HASHES OF LISTS
(Perl data structure cookbook) Declaration of a HASH OF LISTS
(Perl data structure cookbook) Generation of a HASH OF LISTS
(Perl data structure cookbook) Access and Printing of a HASH OF LISTS
(Perl data structure cookbook) LISTS OF HASHES
(Perl data structure cookbook) Declaration of a LIST OF HASHES
(Perl data structure cookbook) Generation of a LIST OF HASHES
(Perl data structure cookbook) Access and Printing of a LIST OF HASHES
(Perl data structure cookbook) HASHES OF HASHES
(Perl data structure cookbook) Declaration of a HASH OF HASHES
(Perl data structure cookbook) Generation of a HASH OF HASHES
(Perl data structure cookbook) Access and Printing of a HASH OF HASHES
(Perl data structure cookbook) MORE ELABORATE RECORDS
(Perl data structure cookbook) Declaration of MORE ELABORATE RECORDS
(Perl data structure cookbook) Declaration of a HASH OF COMPLEX RECORDS
(Perl data structure cookbook) Generation of a HASH OF COMPLEX RECORDS No qualified books.
How do I compute the difference of two arrays? How do I compute the intersection of two arrays?
How do I find the first array element for which a condition is true?
What happens if I add or remove keys from a hash while iterating over it?
What's the difference between "delete" and "undef" with hashes?
Why don't my tied hashes make the defined/exists distinction?
How can I make my hash remember the order I put elements into it?
Why does passing a subroutine an undefined element in a hash create it?
How can I make the Perl equivalent of a C structure/C++ class/hash or array of hashes or arrays?
(PERL predefined variable) $SUBSCRIPT_SEPARATOR The subscript separator for multidimensional array emulation.
(Perl builtin function) delete EXPR Deletes the specified key(s) and their associated values from a hash.
(Perl builtin function) each HASH Returns a 2-element array consisting of the key and value for the next element of a hash, so that you can iterate.
(Perl builtin function) exists EXPR Returns TRUE if the specified hash key exists in its hash array.
(Perl builtin function) keys HASH Returns a normal array consisting of all the keys of the named hash.
(Perl builtin function) pop ARRAY Pops and returns the last value of the array, shortening the array by 1.
(Perl builtin function) push ARRAY,LIST Treats ARRAY as a stack, and pushes the values of LIST onto the end of ARRAY.
(Perl builtin function) splice ARRAY,OFFSET,LENGTH,LIST Removes the elements designated by OFFSET and LENGTH from an array, and replaces them with the elements of LIST, if any.
(Perl builtin function) unpack TEMPLATE,EXPR takes a string representing a structure and expands it out into a list value.
(Perl builtin function) values HASH Returns a normal array consisting of all the values of the named hash.
stlport-4.0 Adaptation of SGI's Standard Template Library
Detailed Filter and Focus Checklist |