Arrays: Processing Sequences of Elements
Arrays: Processing Sequences of Elements
Svetlin Nakov
Telerik Corporation
www.telerik.com
Table of Contents
1. Declaring and Creating Arrays
2. Accessing Array Elements
3. Console Input and Output of Arrays
4. Iterating Over Arrays Using for and foreach
5. Matrices and Multidimensional Arrays
6. Dynamic Arrays
Lists<T>
Copying Arrays
Declaring and
Creating Arrays
What are Arrays?
An array is a sequence of elements
All elements are of the same type
The order of the elements is fixed
Has fixed size (Array.Length)
Element
of an array
Array of 5 0 1 2 3 4 Element
elements … … … … … index
Declaring Arrays
Declaration defines the type of the elements
Square brackets [] mean "array"
Examples:
Declaring array of integers:
int[] myIntArray;
0 1 2 3 4
myIntArray … … … … …
managed heap
(dynamic memory)
Creating and Initializing Arrays
Creating and initializing can be done together:
myIntArray = {1, 2, 3, 4, 5};
0 1 2 3 4
myIntArray … … … … …
managed heap
(dynamic memory)
The new operator is not required when using
curly brackets initialization
Creating Array – Example
Creating an array that contains the names of
the days of the week
string[] daysOfWeek =
{
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
};
Days of Week
Live Demo
Accessing Array Elements
Read and Modify Elements by Index
How to Access Array Element?
Array elements are accessed using the square
brackets operator [] (indexer)
Array indexer takes element’s index as
parameter
The first element has index 0
The last element has index Length-1
Array elements can be retrieved and changed
by the [] operator
Reversing an Array – Example
Reversing the contents of an array
int[] array = new int[] {1, 2, 3, 4, 5};
1 2 2 1 1 2 3 2 1 1 2 3 3 2 1
0 5 0 -2 4
1 5 6 7 8
Declaring and Creating
Multidimensional Arrays
Declaring multidimensional arrays:
int[,] intMatrix;
float[,] floatMatrix;
string[,,] strCube;
40
Copying Arrays
The Array Class
Copying Arrays
Sometimes we must copy the values from one
array to another one
If we do it the intuitive way we would copy not
only the values but the reference to the array
Changing some of the values in one array will
affect the other
int[] copyArray=array;
The way to avoid this is using Array.Copy()
Array.Copy(sourceArray, copyArray);
This way only the values will be copied but not
the reference
Summary
Arrays are a fixed-length sequences of
elements of the same type
Array elements are accessible by index
Can be read and modified
Iteration over array elements can be done with
for and foreach loops
Matrices (2-dimensional arrays) are very useful
for presenting tabular data
Arrays
Questions?
http://academy.telerik.com
Exercises
1. Write a program that allocates array of 20 integers
and initializes each element by its index multiplied
by 5. Print the obtained array on the console.
2. Write a program that reads two arrays from the
console and compares them element by element.
3. Write a program that compares two char arrays
lexicographically (letter by letter).
4. Write a program that finds the maximal sequence of
equal elements in an array.
Example: {2, 1, 1, 2, 3, 3, 2, 2, 2, 1} {2, 2, 2}.
Exercises (2)
5. Write a program that finds the maximal increasing
sequence in an array. Example:
{3, 2, 3, 4, 2, 2, 4} {2, 3, 4}.
6. Write a program that reads two integer numbers N
and K and an array of N elements from the console.
Find in the array those K elements that have
maximal sum.
7. Sorting an array means to arrange its elements in
increasing order. Write a program to sort an array.
Use the "selection sort" algorithm: Find the smallest
element, move it at the first position, find the
smallest from the rest, move it at the second
position, etc.
Exercises (3)
8. Write a program that finds the sequence of maximal
sum in given array. Example:
{2, 3, -6, -1, 2, -1, 6, 4, -8, 8} {2, -1, 6, 4}
Can you do it with only one loop (with single scan
through the elements of the array)?
9. Write a program that finds the most frequent
number in an array. Example:
{4, 1, 1, 4, 2, 3, 4, 4, 1, 2, 4, 9, 3} 4 (5 times)
10. Write a program that finds in given array of integers
a sequence of given sum S (if present). Example:
{4, 3, 1, 4, 2, 5, 8}, S=11 {4, 2, 5}
Exercises (4)
11. Write a program that fills and prints a matrix of size
(n, n) as shown below: (examples for n = 4)
1 5 9 13 1 8 9 16
2 6 10 14 2 7 10 15
a) b)
3 7 11 15 3 6 11 14
4 8 12 16 4 5 12 13
7 11 14 16 1 12 11 10
4 8 12 15 2 13 16 9
c) d)
2 5 9 13 3 14 15 8
1 3 6 10 4 5 6 7
Exercises (5)
12. Write a program that reads a rectangular matrix of
size N x M and finds in it the square 3 x 3 that has
maximal sum of its elements.
13. We are given a matrix of strings of size N x M.
Sequences in the matrix we define as sets of several
neighbor elements located on the same line, column
or diagonal. Write a program that finds the longest
sequence of equal strings in the matrix. Examples:
ha fifi ho hi s qq s
fo ha hi xx ha, ha, ha pp pp s s, s, s
xxx ho ha xx pp qq s
Exercises (6)
14. Write a program that finds the index of given
element in a sorted array of integers by using the
binary search algorithm (find it in Wikipedia).
15. Write a program that creates an array containing all
letters from the alphabet (A-Z). Read a word from
the console and print the index of each of its letters
in the array.
16. Write a program that sorts an array of integers using
the merge sort algorithm (find it in Wikipedia).
17. Write a program that sorts an array of strings using
the quick sort algorithm (find it in Wikipedia).
Exercises (7)
18. Write a program that finds all prime numbers in the
range [1...10 000 000]. Use the sieve of Eratosthenes
algorithm (find it in Wikipedia).
19. * We are given an array of integers and a number S.
Write a program to find if there exists a subset of the
elements of the array that has a sum S. Example:
arr={2, 1, 2, 4, 3, 5, 2, 6}, S=14 yes (1+2+5+6)
20. * Write a program that reads three integer numbers
N, K and S and an array of N elements from the
console. Find in the array a subset of K elements
that have sum S or indicate about its absence.
Exercises (8)
21. * Write a program that reads an array of integers and
removes from it a minimal number of elements in
such way that the remaining array is sorted in
increasing order. Print the remaining sorted array.
Example:
{6, 1, 4, 3, 0, 3, 6, 4, 5} {1, 3, 3, 4, 5}
22. * Write a program that reads a number N and
generates and prints all the permutations of the
numbers [1 … N]. Example:
n = 3 {1, 2, 3}, {1, 3, 2}, {2, 1, 3}, {2, 3, 1}, {3, 1, 2},
{3, 2, 1}
Exercises (9)
23. Write a program that reads two numbers N and K
and generates all the variations of K elements from
the set [1..N]. Example:
N = 3, K = 2 {1, 1}, {1, 2}, {1, 3}, {2, 1}, {2, 2}, {2, 3},
{3, 1}, {3, 2}, {3, 3}
24. Write a program that reads two numbers N and K
and generates all the combinations of K distinct
elements from the set [1..N]. Example:
N = 5, K = 2 {1, 2}, {1, 3}, {1, 4}, {1, 5}, {2, 3}, {2, 4},
{2, 5}, {3, 4}, {3, 5}, {4, 5}
Exercises (10)
25. Write a program that fills a matrix of size (N, N) as
shown in the examples (for N=4):
16 15 13 10 7 11 14 16
14 12 9 6 4 8 12 15
a) b)
11 8 5 3 2 5 9 13
7 4 2 1 1 3 6 10
1 12 11 10 10 11 12 13
2 13 16 9 9 2 3 14
*c) *d)
3 14 15 8 8 1 4 15
4 5 6 7 7 6 5 16
Exercises (11)
26. * Write a program that finds the largest area of equal
neighbor elements in a rectangular matrix and prints
its size. Example:
1 3 2 2 2 4
3 3 3 2 4 4
4 3 1 2 3 3 13
4 3 1 3 3 1
4 3 3 3 1 1