190 likes | 377 Views
Chapter 6 - Arrays. Outline 6.1 Introduction 6.2 Arrays 6.3 Declaring Arrays 6.4 Examples Using Arrays 6.5 Passing Arrays to Functions . Objectives. In this chapter, you will learn: To introduce the array data structure.
E N D
Chapter 6 - Arrays Outline 6.1 Introduction 6.2 Arrays 6.3 Declaring Arrays 6.4 Examples Using Arrays 6.5 Passing Arrays to Functions
Objectives • In this chapter, you will learn: • To introduce the array data structure. • To understand the use of arrays to store, sort and search lists and tables of values. • To understand how to define an array, initialize an array and refer to individual elements of an array. • To be able to pass arrays to functions.
6.1 Introduction to Arrays • An orderd collection of values of identical type • Takes consecutive memory locations • Example: grades for 7 students • Instead of declaring each a separate floatvariable, all of them are declared as a single array of floattype • float grade[7];
Name of array (Note that all elements of this array have the same name, c) c[0] -45 c[1] 6 c[2] 0 c[3] 72 c[4] 1543 c[5] -89 c[6] 0 c[7] 62 c[8] -3 c[9] 1 c[10] 6453 c[11] 78 Position number of the element within array c 6.2 Array Elements • To refer to an element, specify • Array name for the collection • Position number for the member • Format: arrayname[position number] • First element at position 0 • n element array named c: • c[ 0 ], c[ 1 ]...c[ n – 1 ]
Array Element Variables • Array elements are like normal variables c[ 0 ] = 3; printf( "%d", c[ 0 ] ); scanf(“%f”, &grade[i]); • Any integer expression possible in subscript (position number) • If x equals to 3, c[ 5 - 2 ], c[ 3 ], c[ x ] are all equivalent
6.3 Defining Arrays • When defining arrays, specify • Name • Type of array (Array can be defined over any type) • Number of elements arrayType arrayName[ numberOfElements ]; • Examples: float grade[ 7 ]; int c[ 10 ]; • Defining multiple arrays of same type • Format similar to regular variables • Example: int b[ 100 ], x[ 27 ];
Using Arrays: Averaging Grades float grade[7], total; /* initialize grades somehow */ total = grade[0] + grade[1] + grade[2] + grade[3] + grade[4] + grade[5] + grade[6]; printf(“average = %f\n”, total/7.0); Or, For (int i=0; i<7; i++) total+= grade[i]; printf(“average = %f\n”, total/7.0); Actually, we can use arrays efficiently with loops
6.4 Initializing Arrays • Initializers int n[ 5 ] = { 1, 2, 3, 4, 5 }; • If not enough initializers, rightmost elements become 0 int n[ 5 ] = { 0 } • All elements 0 • If too many a syntax error is produced syntax error • If array length omitted, initializers determine it int n[ ] = { 1, 2, 3, 4, 5 }; • 5 initializers, therefore 5 element array
Element Value 0 32 1 27 2 64 3 18 4 95 5 14 6 90 7 70 8 60 9 37 Program Output
fig06_06.cProgram Output Total of array element values is 383
6.5 Passing Arrays to Functions • Passing arrays • To pass an array argument to a function, specify the name of the array without any brackets int myArray[24]; myFunction(myArray,24); • Array size usually passed to function as a separate argument • Arrays passed get the effect of call-by-reference (?) • Name of array is a constant whose value is the address of first array element (e.g., myArray == &myArray[0]) • Function knows where the array is stored • Can modify the original memory locations of the array • Passing array elements • Passed by call-by-value • Pass subscripted name (i.e., myArray[3]) to function
6.5 Passing Arrays to Functions • Function prototype void modifyArray( int b[], int arraySize ); • Parameter names optional in prototype • int b[] could be written int [] • int arraySize could be simply int
Effects of passing entire array by reference: The values of the original array are: 0 1 2 3 4 The values of the modified array are: 0 2 4 6 8 Effects of passing array element by value: The value of a[3] is 6 Value in modifyElement is 12 The value of a[ 3 ] is 6 Program Output 0 a b 0->0 1_>2 modifyArray() 2->4 3_>6 6->12 4->8 e main() modifyElement()