27
EC-102 Computer System & Programming Lecture #9 Instructor: Jahan Zeb Department of Computer Engineering (DCE) College of E&ME

Lecture#9 Arrays in c++

Embed Size (px)

Citation preview

Page 1: Lecture#9 Arrays in c++

EC-102 Computer System & Programming

Lecture #9 Instructor: Jahan Zeb

Department of Computer Engineering (DCE)College of E&ME

NUST

Page 2: Lecture#9 Arrays in c++

Searching Arrays: Linear Search

Search array for a key value Linear search

– Compare each element of array with key value• Start at one end, go to other

– Useful for small and unsorted arrays• Inefficient• If search key not present, examines every element

Page 3: Lecture#9 Arrays in c++

1 // Fig. 4.19: fig04_19.cpp2 // Linear search of an array.3 #include <iostream>4 5 using std::cout;6 using std::cin;7 using std::endl;8 9 int linearSearch( const int [], int, int ); // prototype10 11 int main()12 {13 const int arraySize = 100; // size of array a14 int a[ arraySize ]; // create array a15 int searchKey; // value to locate in a16 17 for ( int i = 0; i < arraySize; i++ ) // create some data18 a[ i ] = 2 * i;19 20 cout << "Enter integer search key: ";21 cin >> searchKey;22 23 // attempt to locate searchKey in array a 24 int element = linearSearch( a, searchKey, arraySize );25

Takes array, search key, and array size.

Page 4: Lecture#9 Arrays in c++

26 // display results27 if ( element != -1 )28 cout << "Found value in location " << element << endl;29 else30 cout << "Value not found" << endl;31 32 return 0; // indicates successful termination33 34 } // end main35 36 // compare key to every element of array until location is 37 // found or until end of array is reached; return subscript of 38 // element if key or -1 if key not found 39 int linearSearch( const int array[], int key, int sizeOfArray )40 { 41 for ( int j = 0; j < sizeOfArray; j++ ) 42 43 if ( array[ j ] == key ) // if found, 44 return j; // return location of key 45 46 return -1; // key not found 47 48 } // end function linearSearch

Page 5: Lecture#9 Arrays in c++

Enter integer search key: 36Found value in location 18

Enter integer search key: 37Value not found

Page 6: Lecture#9 Arrays in c++

Multiple-Subscripted Arrays

Multiple subscripts – a[ i ][ j ]– Tables with rows and columns– Specify row, then column– “Array of arrays”

• a[0] is an array of 4 elements• a[0][0] is the first element of that array

Row 0

Row 1

Row 2

Column 0 Column 1 Column 2 Column 3a[ 0 ][ 0 ]

a[ 1 ][ 0 ]

a[ 2 ][ 0 ]

a[ 0 ][ 1 ]

a[ 1 ][ 1 ]

a[ 2 ][ 1 ]

a[ 0 ][ 2 ]

a[ 1 ][ 2 ]

a[ 2 ][ 2 ]

a[ 0 ][ 3 ]

a[ 1 ][ 3 ]

a[ 2 ][ 3 ]

Row subscriptArray name

Column subscript

Page 7: Lecture#9 Arrays in c++

Multiple-Subscripted Arrays

To initialize– Default of 0– Initializers grouped by row in bracesint b[ 2 ][ 2 ] = { { 1, 2 }, { 3, 4 } };

int b[ 2 ][ 2 ] = { { 1 }, { 3, 4 } };

1 2

3 4

1 0

3 4

Row 0 Row 1

Page 8: Lecture#9 Arrays in c++

Multiple-Subscripted Arrays

Referenced like normalcout << b[ 0 ][ 1 ];

– Outputs 0– Cannot reference using commas

cout << b[ 0, 1 ];• Syntax error

Function prototypes– Must specify sizes of subscripts

• First subscript not necessary, as with single-scripted arrays– void printArray( int [][ 3 ] );

1 0

3 4

Page 9: Lecture#9 Arrays in c++

1 // Fig. 4.22: fig04_22.cpp2 // Initializing multidimensional arrays.3 #include <iostream>4 5 using std::cout;6 using std::endl;7 8 void printArray( int [][ 3 ] );9 10 int main()11 {12 int array1[ 2 ][ 3 ] = { { 1, 2, 3 }, { 4, 5, 6 } };13 int array2[ 2 ][ 3 ] = { 1, 2, 3, 4, 5 }; 14 int array3[ 2 ][ 3 ] = { { 1, 2 }, { 4 } }; 15 16 cout << "Values in array1 by row are:" << endl;17 printArray( array1 );18 19 cout << "Values in array2 by row are:" << endl;20 printArray( array2 );21 22 cout << "Values in array3 by row are:" << endl;23 printArray( array3 );24 25 return 0; // indicates successful termination26 27 } // end main

Note the various initialization styles. The elements in array2 are assigned to the first row and then the second.

Note the format of the prototype.

Page 10: Lecture#9 Arrays in c++

28 29 // function to output array with two rows and three columns 30 void printArray( int a[][ 3 ] ) 31 { 32 for ( int i = 0; i < 2; i++ ) { // for each row 33 34 for ( int j = 0; j < 3; j++ ) // output column values35 cout << a[ i ][ j ] << ' '; 36 37 cout << endl; // start new line of output 38 39 } // end outer for structure 40 41 } // end function printArray

Values in array1 by row are:1 2 34 5 6Values in array2 by row are:1 2 34 5 0Values in array3 by row are:1 2 04 0 0

For loops are often used to iterate through arrays. Nested loops are helpful with multiple-subscripted arrays.

Page 11: Lecture#9 Arrays in c++

Character Arrays

Strings Arrays of characters

– All strings end with null ('\0')– Examples

• char string1[] = "hello";– Null character implicitly added– string1 has 6 elements

• char string1[] = { 'h', 'e', 'l', 'l', 'o', '\0’ };

– Subscripting is the sameString1[ 0 ] is 'h'string1[ 2 ] is 'l'

Page 12: Lecture#9 Arrays in c++

Examples Using Arrays

Input from keyboardchar string2[ 10 ];cin >> string2;

– Puts user input in string• Stops at first whitespace character• Adds null character

Printing strings– cout << string2 << endl;

• Does not work for other array types– Characters printed until null found

Page 13: Lecture#9 Arrays in c++

1 // Fig. 4_12: fig04_12.cpp2 // Treating character arrays as strings.3 #include <iostream>4 5 using std::cout;6 using std::cin;7 using std::endl;8 9 int main()10 {11 char string1[ 20 ], // reserves 20 characters12 char string2[] = "string literal"; // reserves 15 characters13 14 // read string from user into array string215 cout << "Enter the string \"hello there\": ";16 cin >> string1; // reads "hello" [space terminates input]17 18 // output strings19 cout << "string1 is: " << string1 20 << "\nstring2 is: " << string2;21 22 cout << "\nstring1 with spaces between characters is:\n";23

Two different ways to declare strings. string2 is initialized, and its size determined automatically .

Examples of reading strings from the keyboard and printing them out.

Page 14: Lecture#9 Arrays in c++

24 // output characters until null character is reached25 for ( int i = 0; string1[ i ] != '\0'; i++ )26 cout << string1[ i ] << ' '; 27 28 cin >> string1; // reads "there"29 cout << "\nstring1 is: " << string1 << endl;30 31 return 0; // indicates successful termination32 33 } // end main

Enter the string "hello there": hello therestring1 is: hellostring2 is: string literalstring1 with spaces between characters is:h e l l ostring1 is: there

Can access the characters in a string using array notation. The loop ends when the null character is found.

Page 15: Lecture#9 Arrays in c++

Pointers

Pointers – Powerful, but difficult to master– Simulate pass-by-reference – Close relationship with arrays and strings

Page 16: Lecture#9 Arrays in c++

Pointer Variable Declarations and Initialization

Pointer variables– Contain memory addresses as values – Normally, variable contains specific value (direct reference)– Pointers contain address of variable that has specific value

(indirect reference) Indirection

– Referencing value through pointer Pointer declarations

– * indicates variable is pointerint *myPtr;

declares pointer to int, pointer of type int *– Multiple pointers require multiple asterisks

int *myPtr1, *myPtr2;

count

7

countPtr 

count

7

Page 17: Lecture#9 Arrays in c++

Pointer Variable Declarations and Initialization

Can declare pointers to any data type Pointer initialization

– Initialized to 0, NULL, or address• 0 or NULL points to nothing

Page 18: Lecture#9 Arrays in c++

Pointer Operators

& (address operator)– Returns memory address of its operand– Example

int y = 5;int *yPtr;yPtr = &y; // yPtr gets address of y

– yPtr “points to” y

yPtr

y5

yptr

500000 600000

y

600000 5

address of y is value of yptr

Page 19: Lecture#9 Arrays in c++

Pointer Operators

* (indirection/dereferencing operator)– Returns synonym for object its pointer operand points to– *yPtr returns y (because yPtr points to y).

*yptr = 9; // assigns 9 to y

* and & are inverses of each other

Page 20: Lecture#9 Arrays in c++

1 // Fig. 5.4: fig05_04.cpp2 // Using the & and * operators.3 #include <iostream>4 5 using std::cout;6 using std::endl;7 8 int main()9 {10 int a; // a is an integer11 int *aPtr; // aPtr is a pointer to an integer12 13 a = 7;14 aPtr = &a; // aPtr assigned address of a15 16 cout << "The address of a is " << &a17 << "\nThe value of aPtr is " << aPtr;18 19 cout << "\n\nThe value of a is " << a20 << "\nThe value of *aPtr is " << *aPtr;21 22 cout << "\n\nShowing that * and & are inverses of "23 << "each other.\n&*aPtr = " << &*aPtr24 << "\n*&aPtr = " << *&aPtr << endl;25

* and & are inverses of each other

Page 21: Lecture#9 Arrays in c++

26 return 0; // indicates successful termination27 28 } // end main

The address of a is 0012FED4The value of aPtr is 0012FED4 The value of a is 7The value of *aPtr is 7 Showing that * and & are inverses of each other.&*aPtr = 0012FED4*&aPtr = 0012FED4

* and & are inverses; same result when both applied to aPtr

Page 22: Lecture#9 Arrays in c++

Calling Functions by Reference

3 ways to pass arguments to function– Pass-by-value– Pass-by-reference with reference arguments– Pass-by-reference with pointer arguments

return can return one value from function Arguments passed to function using reference

arguments– Modify original values of arguments– More than one value “returned”

Page 23: Lecture#9 Arrays in c++

Calling Functions by Reference

Pass-by-reference with pointer arguments– Simulate pass-by-reference

• Use pointers and indirection operator– Pass address of argument using & operator– Arrays not passed with & because array name already pointer– * operator used as alias/nickname for variable inside of

function

Page 24: Lecture#9 Arrays in c++

1 // Fig. 5.6: fig05_06.cpp2 // Cube a variable using pass-by-value.3 #include <iostream>4 5 using std::cout;6 using std::endl;7 8 int cubeByValue( int ); // prototype9 10 int main()11 {12 int number = 5;13 14 cout << "The original value of number is " << number;15 16 // pass number by value to cubeByValue17 number = cubeByValue( number );18 19 cout << "\nThe new value of number is " << number << endl;20 21 return 0; // indicates successful termination22 23 } // end main24

Pass number by value; result returned by cubeByValue

Page 25: Lecture#9 Arrays in c++

25 // calculate and return cube of integer argument 26 int cubeByValue( int n ) 27 { 28 return n * n * n; // cube local variable n and return result29 30 } // end function cubeByValue

The original value of number is 5The new value of number is 125

cubeByValue receives parameter passed-by-value

Cubes and returns local variable n

Page 26: Lecture#9 Arrays in c++

1 // Fig. 5.7: fig05_07.cpp2 // Cube a variable using pass-by-reference 3 // with a pointer argument.4 #include <iostream>5 6 using std::cout;7 using std::endl;8 9 void cubeByReference( int * ); // prototype10 11 int main()12 {13 int number = 5;14 15 cout << "The original value of number is " << number;16 17 // pass address of number to cubeByReference18 cubeByReference( &number );19 20 cout << "\nThe new value of number is " << number << endl;21 22 return 0; // indicates successful termination23 24 } // end main25

Apply address operator & to pass address of number to cubeByReference

cubeByReference modified variable number

Prototype indicates parameter is pointer to int

Page 27: Lecture#9 Arrays in c++

26 // calculate cube of *nPtr; modifies variable number in main27 void cubeByReference( int *nPtr ) 28 { 29 *nPtr = *nPtr * *nPtr * *nPtr; // cube *nPtr 30 31 } // end function cubeByReference

The original value of number is 5The new value of number is 125

cubeByReference receives address of int variable,i.e., pointer to an int

Modify and access int variable using indirection operator *