Chapter 4. Arrays - Perl Cd Bookshelf [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Perl Cd Bookshelf [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



Chapter 4. Arrays


Contents:

Introduction

Specifying a List in Your Program

Printing a List with Commas

Changing Array Size

Implementing a Sparse Array

Iterating Over an Array

Iterating Over an Array by Reference

Extracting Unique Elements from a List

Finding Elements in One Array but Not Another

Computing Union, Intersection, or Difference of Unique Lists

Appending One Array to Another

Reversing an Array

Processing Multiple Elements of an Array

Finding the First List Element That Passes a Test

Finding All Elements in an Array Matching Certain Criteria

Sorting an Array Numerically

Sorting a List by Computable Field

Implementing a Circular List

Randomizing an Array

Program: words

Program: permute

E.M. Forster

Works of art, in my opinion, are the only objects in the material
universe to possess internal order, and that is why, though I don't
believe that only art matters, I do believe in Art for Art's sake.


4.0. Introduction



If you are
asked about the contents of your pockets, or the names of the first
three Greek letters, or how to get to the highway, you recite a list:
you name one thing after another in a particular order. Lists are
part of your conception of the world. With Perl's powerful list- and
array-handling primitives, you can translate this world view directly
into code.

In this chapter, we'll use the terms list and
array as the Perl language thinks of them.
Take ("alpha", "beta",
"gamma"); that's a list of
the names of the first three Greek letters, in order. To store that
list into a variable, use an array, as in
@greeks =
("alpha", "beta",
"gamma"). Both are ordered groups of scalar
values; the difference is that an array is a named variable, one
whose array length can be directly changed, whereas a list is a more
ephemeral notion. You might think of an array as a variable and a
list as the values it contains.

This distinction may seem arbitrary, but operations that modify the
length of these groupings (like push and
pop) require a proper array and not merely a list.
Think of the difference between $a and
4. You can say $a++ but not
4++. Likewise, you can say
pop(@a) but not pop
(1,2,3).

The most important thing to glean from this is that Perl's lists and
arrays are both ordered groupings of scalars. Operators and functions
that work on lists or arrays are designed to provide faster or more
convenient access to the elements than manual access would provide.
Since few actually deal with modifying the array's length, you can
usually use arrays and lists interchangeably.

You can't use nested parentheses to create a list of lists. If you
try that in Perl, your lists get flattened,
meaning that both these lines are equivalent:

@nested = ("this", "that", "the", "other");
@nested = ("this", "that", ("the", "other"));

Why doesn't Perl (usefully) just support nested lists directly?
Although partially for historical reasons, this easily allows for
operations (like print or sort)
that work on arbitrarily long lists of arbitrary contents.


What
happens if you want a more complex data structure, such as an array
of arrays or an array of hashes? Remember that scalars aren't
restricted to containing just numbers or strings; they can also hold
references. Complex (multilevel) data structures in Perl are always
put together using references. Therefore, what appear to be
"two-dimensional arrays" or "arrays of arrays" are always implemented
as arrays of array references, in the same way
that two-dimensional arrays in C can be arrays of pointers to
arrays.

Most recipes in this chapter don't care what you keep in your arrays;
for example, the problem of merging two arrays is the same whether
the arrays contains strings, numbers, or references. Some problems
are intrinsically tied to the contents of your arrays; recipes for
those are in
Chapter 11. This chapter's recipes
deal with generic arrays.

Let's have some more terminology. The scalar items in an array or
list are called elements, which you access by
specifying their position, or index. Indices
in Perl start at 0. So, given this list:

@greeks = ( "alpha", "beta", "gamma" );

"alpha" is in the first position, but you'd access
it as $greeks[0]. "beta" is in
the second position, but you'd access it as
$greeks[1]. This structure is doubly justified:
the contrariness of computers, whose first representable number is 0,
and the contrariness of language designers, who chose 0 because it is
an offset into the array, not the
ordinal number of the element.



3.11. Program: hopdelta4.1. Specifying a List in Your Program




Copyright © 2003 O'Reilly & Associates. All rights reserved.

/ 875