Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Arrays Hold Multiple Values 7.1.

Slides:



Advertisements
Similar presentations
Computer Science 1620 Multi-Dimensional Arrays. we used arrays to store a set of data of the same type e.g. store the assignment grades for a particular.
Advertisements

Starting Out with C++: Early Objects 5/e © 2006 Pearson Education. All Rights Reserved Starting Out with C++: Early Objects 5 th Edition Chapter 8 Arrays.
Chapter 8. 2 Objectives You should be able to describe: One-Dimensional Arrays Array Initialization Arrays as Arguments Two-Dimensional Arrays Common.
 2006 Pearson Education, Inc. All rights reserved Arrays.
Chapter 9: Arrays and Strings
Chapter 9: Arrays and Strings
Chapter 7 Arrays C++ Programming, Namiq Sultan1 Namiq Sultan University of Duhok Department of Electrical and Computer Engineering Reference: Starting.
Lesson 7 Arrays CS 1 Lesson 7 -- John Cole1. Arrays Hold Multiple Values Array: variable that can store multiple values of the same type Values are stored.
Chapter 7: Arrays. Outline Array Definition Access Array Array Initialization Array Processing 2D Array.
Copyright © 2012 Pearson Education, Inc. Chapter 8 Two Dimensional Arrays.
 2006 Pearson Education, Inc. All rights reserved Arrays.
CHAPTER 07 Arrays and Vectors (part I). OBJECTIVES 2 In this part you will learn:  To use the array data structure to represent a set of related data.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 9: Pointers.
C++ Programming: From Problem Analysis to Program Design, Fifth Edition Arrays.
Arrays Chapter 8.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 8: Arrays Starting Out with C++ Early Objects Seventh Edition by.
ARRAYS Lecture 2. 2 Arrays Hold Multiple values  Unlike regular variables, arrays can hold multiple values.
Copyright © 2014, 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley C-Strings, Arrays, and String Class Review.
Lecture: Arrays. 7.1 Arrays Hold Multiple Values.
Section 5 - Arrays. Problem solving often requires information be viewed as a “list” List may be one-dimensional or multidimensional List is implemented.
1 Chapter 7 Arrays. 2 Topics 7.1 Arrays Hold Multiple Values 7.2 Accessing Array Elements 7.3 No Bounds Checking in C Array Initialization 7.5 Processing.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 8: Arrays Starting Out with C++ Early Objects Seventh Edition by.
+ Chapter 8: Arrays Starting Out with C++ Early Objects Seventh Edition by Tony Gaddis, Judy Walters, and Godfrey Muganda.
A First Book of C++: From Here To There, Third Edition2 Objectives You should be able to describe: One-Dimensional Arrays Array Initialization Arrays.
Arrays. Related data items Collection of the same types of data. Static entity – Same size throughout program.
Copyright 2004 Scott/Jones Publishing Alternate Version of STARTING OUT WITH C++ 4 th Edition Chapter 8 Arrays.
Chapter 7: Arrays. Outline Array Definition Access Array Array Initialization Array Processing 2D Array.
Chapter 8: Arrays Starting Out with C++ Early Objects Seventh Edition by Tony Gaddis, Judy Walters, and Godfrey Muganda.
Copyright © 2002 W. A. Tucker1 Chapter 9 Lecture Notes Bill Tucker Austin Community College COSC 1315.
 2008 Pearson Education, Inc. All rights reserved. 1 Arrays and Vectors.
Arrays Dr. Jose Annunziato. Arrays Up to this point we have been working with individual primitive data types Arrays allow working with multiple instances.
Copyright 2003 Scott/Jones Publishing Standard Version of Starting Out with C++, 4th Edition Chapter 7 Arrays.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with C++ Early Objects Sixth Edition Chapter 8: Arrays by Tony.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 8: Arrays Starting Out with C++ Early Objects Seventh Edition by.
Chapter 8 Arrays. A First Book of ANSI C, Fourth Edition2 Introduction Atomic variable: variable whose value cannot be further subdivided into a built-in.
Copyright 2003 Scott/Jones Publishing Alternate Version of Starting Out with C++, Third Edition Chapter 8 Arrays.
Arrays Chapter 12. Overview Arrays and their properties Creating arrays Accessing array elements Modifying array elements Loops and arrays.
Chapter 7 Arrays Csc 125 Introduction to C++. Topics Arrays Hold Multiple Values Array Operations Arrays as function arguments Two-dimensional arrays.
Copyright © 2015, 2012, 2009 Pearson Education, Inc., Publishing as Addison-Wesley All rights reserved. Chapter 7: Arrays.
Arrays Chapter 7. Arrays Hold Multiple Values Array: variable that can store multiple values of the same type Values are stored in adjacent memory locations.
SEQUENTIAL AND OBJECT ORIENTED PROGRAMMING Arrays.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Slide 7- 1.
Lecture 8 – Array (Part 1) FTMK, UTeM – Sem /2014.
Copyright © 2012 Pearson Education, Inc. Chapter 7: Arrays.
Lecture 9 – Array (Part 2) FTMK, UTeM – Sem /2014.
Copyright © 2013 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Third Edition by Tony Gaddis.
ARRAYS (C) KHAERONI, M.SI. OVERVIEW Introduction to Arrays Arrays in Functions Programming with Arrays Multidimensional Arrays.
Chapter 7: Arrays. 7.1 Arrays Hold Multiple Values.
Lecture 2 Arrays. Topics 1 Arrays hold Multiple Values 2 Accessing Array Elements 3 Inputting and Displaying Array Contents 4 Array Initialization 5 Using.
Chapter 8: Arrays. Arrays Hold Multiple Values Array: variable that can store multiple values of the same type Values are stored in adjacent memory locations.
Data Storage So far variables have been able to store only one value at a time. What do you do if you have many similar values that all need to be stored?
C++ Programming: Program Design Including Data Structures, Fourth Edition Chapter 9: Arrays and Strings.
Objectives You should be able to describe: One-Dimensional Arrays
Copyright © 2012 Pearson Education, Inc. 16/4/1435 h Sunday Lecture 3 1.Using a Loop to Step Through an array 2.Implicit Array Sizing 3.No Bounds Checking.
A FIRST BOOK OF C++ CHAPTER 7 ARRAYS. OBJECTIVES In this chapter, you will learn about: One-Dimensional Arrays Array Initialization Arrays as Arguments.
Alternate Version of Starting Out with C++, Third Edition
Chapter 7: Arrays.
Lecture 6 Arrays and Vectors
Chapter 7: Arrays.
Lecture 3 C & C++ programming.
Week 13 & 14 Arrays SCK1213Programming Technique I SEM1 2009/2010
New Structure Recall “average.cpp” program
Chapter 7: Arrays.
7 Chapter Arrays.
Chapter 8: Arrays Starting Out with C++ Early Objects Eighth Edition
7 Arrays.
Standard Version of Starting Out with C++, 4th Edition
Chapter 8: Arrays Starting Out with C++ Early Objects Ninth Edition
Presentation transcript:

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Arrays Hold Multiple Values 7.1

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-2 Array - Memory Layout The definition: int tests[5]; allocates the following memory: first element second element third element fourth element fifth element

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-3 Array Terminology In the definition int tests[5]; int is the data type of the array elements tests is the name of the array 5, in [5], is the size declarator. It shows the number of elements in the array. The size of an array is (number of elements) * (size of each element)

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-4 Array Terminology The size of an array is: –the total number of bytes allocated for it – (number of elements) * (number of bytes for each element) Examples: int tests[5] is an array of 20 bytes, assuming 4 bytes for an int long double measures[10] is an array of 80 bytes, assuming 8 bytes for a long double

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-5 Accessing Array Elements Each element in an array is assigned a unique subscript. Subscripts start at subscripts:

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-6 Accessing Array Elements Array elements can be used as regular variables: tests[0] = 79; cout << tests[0]; cin >> tests[1]; tests[4] = tests[0] + tests[1]; Arrays must be accessed via individual elements: cout << tests; // not legal

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-7 Using a Loop to Step Through an Array Example – The following code defines an array, numbers, and assigns 99 to each element: const int ARRAY_SIZE = 5; int numbers[ARRAY_SIZE]; for (int count = 0; count < ARRAY_SIZE; count++) numbers[count] = 99;

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-8 A Closer Look At the Loop

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-9 Default Initialization Global array  all elements initialized to 0 by default Local array  all elements uninitialized by default

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-10 No Bounds Checking in C++ When you use a value as an array subscript, C++ does not check it to make sure it is a valid subscript. In other words, you can use subscripts that are beyond the bounds of the array.

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-11 Off-By-One Errors An off-by-one error happens when you use array subscripts that are off by one. This can happen when you start subscripts at 1 rather than 0: // This code has an off-by-one error. const int SIZE = 100; int numbers[SIZE]; for (int count = 1; count <= SIZE; count++) numbers[count] = 0;

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-12 Array Initialization Arrays can be initialized with an initialization list: const int SIZE = 5; int tests[SIZE] = {79,82,91,77,84}; The values are stored in the array in the order in which they appear in the list. The initialization list cannot exceed the array size.

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-13 Partial Array Initialization If array is initialized with fewer initial values than the size declarator, the remaining elements will be set to 0:

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-14 Implicit Array Sizing Can determine array size by the size of the initialization list: int quizzes[]={12,17,15,11}; Must use either array size declarator or initialization list at array definition

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-15 Initializing With a String Character array can be initialized by enclosing string in " ": const int SIZE = 6; char fName[SIZE] = "Henry"; Must leave room for \0 at end of array If initializing character-by-character, must add in \0 explicitly: char fName[SIZE] = { 'H', 'e', 'n', 'r', 'y', '\0'};

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-16 Processing Array Contents Array elements can be treated as ordinary variables of the same type as the array When using ++, -- operators, don’t confuse the element with the subscript: tests[i]++; // add 1 to tests[i] tests[i++]; // increment i, no // effect on tests

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-17 Array Assignment To copy one array to another, Don’t try to assign one array to the other: newTests = tests; // Won't work Instead, assign element-by-element: for (i = 0; i < ARRAY_SIZE; i++) newTests[i] = tests[i];

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-18 Printing the Contents of an Array You can display the contents of a character array by sending its name to cout: char fName[] = "Henry"; cout << fName << endl; But, this ONLY works with character arrays!

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-19 Printing the Contents of an Array For other types of arrays, you must print element-by-element: for (i = 0; i < ARRAY_SIZE; i++) cout << tests[i] << endl;

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-20 Summing and Averaging Array Elements Use a simple loop to add together array elements: int tnum; double average, sum = 0; for(tnum = 0; tnum < SIZE; tnum++) sum += tests[tnum]; Once summed, can compute average: average = sum / SIZE;

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-21 Finding the Highest Value in an Array int count; int highest; highest = numbers[0]; for (count = 1; count < SIZE; count++) { if (numbers[count] > highest) highest = numbers[count]; } When this code is finished, the highest variable will contains the highest value in the numbers array.

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-22 Comparing Arrays To compare two arrays, you must compare element-by-element: const int SIZE = 5; int firstArray[SIZE] = { 5, 10, 15, 20, 25 }; int secondArray[SIZE] = { 5, 10, 15, 20, 25 }; bool arraysEqual = true; // Flag variable int count = 0; // Loop counter variable // Compare the two arrays. while (arraysEqual && count < SIZE) { if (firstArray[count] != secondArray[count]) arraysEqual = false; count++; } if (arraysEqual) cout << "The arrays are equal.\n"; else cout << "The arrays are not equal.\n";

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-23 Using Parallel Arrays Parallel arrays: two or more arrays that contain related data A subscript is used to relate arrays: elements at same subscript are related Arrays may be of different types

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-24 Parallel Array Example const int SIZE = 5; // Array size int id[SIZE]; // student ID double average[SIZE]; // course average char grade[SIZE]; // course grade... for(int i = 0; i < SIZE; i++) { cout << "Student ID: " << id[i] << " average: " << average[i] << " grade: " << grade[i] << endl; }

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-25 Arrays as Function Arguments To pass an array to a function, just use the array name: showScores(tests); To define a function that takes an array parameter, use empty [] for array argument: void showScores(int []); // function prototype void showScores(int tests[]) // function header

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-26 Arrays as Function Arguments When passing an array to a function, it is common to pass array size so that function knows how many elements to process: showScores(tests, ARRAY_SIZE); Array size must also be reflected in prototype, header: void showScores(int [], int); // function prototype void showScores(int tests[], int size) // function header

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-27 Modifying Arrays in Functions Array names in functions are like reference variables – changes made to array in a function are reflected in actual array in calling function Need to exercise caution that array is not inadvertently changed by a function

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-28 Two-Dimensional Arrays Can define one array for multiple sets of data Like a table in a spreadsheet Use two size declarators in definition: const int ROWS = 4, COLS = 3; int exams[ROWS][COLS]; First declarator is number of rows; second is number of columns

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-29 Two-Dimensional Array Representation const int ROWS = 4, COLS = 3; int exams[ROWS][COLS]; Use two subscripts to access element: exams[2][2] = 86; exams[0][0]exams[0][1]exams[0][2] exams[1][0]exams[1][1]exams[1][2] exams[2][0]exams[2][1]exams[2][2] exams[3][0]exams[3][1]exams[3][2] columns rowsrows

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley D Array Initialization Two-dimensional arrays are initialized row-by-row: const int ROWS = 2, COLS = 2; int exams[ROWS][COLS] = { {84, 78}, {92, 97} }; Can omit inner { }, some initial values in a row – array elements without initial values will be set to 0 or NULL

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-31 Two-Dimensional Array as Parameter, Argument Use array name as argument in function call: getExams(exams, 2); Use empty [] for row, size declarator for column in prototype, header: const int COLS = 2; // Prototype void getExams(int [][COLS], int); // Header void getExams(int exams[][COLS], int rows)

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-32 Array of Strings Use a two-dimensional array of characters as an array of strings: const int NAMES = 3, SIZE = 10; char students[NAMES][SIZE] = { "Ann", "Bill", "Cindy" }; Each row contains one string Can use row subscript to reference the string in a particular row: cout << students[i];

Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 1-33 Arrays with Three or More Dimensions Can define arrays with any number of dimensions: short rectSolid[2][3][5]; double timeGrid[3][4][3][4]; When used as parameter, specify all but 1 st dimension in prototype, heading: void getRectSolid(short [][3][5]);