Opening Input/Output Files ifstream infile; ofstream outfile; char inFileName[40]; char outFileName[40]; cout<<"Enter the input file name: "; cin>>inFileName;

Slides:



Advertisements
Similar presentations
CHAPTER 10 ARRAYS II Applications and Extensions.
Advertisements

TK1914: C++ Programming Array II. Objective In this chapter you will explore how to manipulate data in a two-dimensional array. 2FTSM :: TK1914,
1 Lecture 21:Arrays and Strings(cont.) Introduction to Computer Science Spring 2006.
1 Lecture 20:Arrays and Strings Introduction to Computer Science Spring 2006.
Chapter 8. 2 Objectives You should be able to describe: One-Dimensional Arrays Array Initialization Arrays as Arguments Two-Dimensional Arrays Common.
1 Arrays  Arrays are objects that help us organize large amounts of information  Chapter 8 focuses on: array declaration and use passing arrays and array.
Java Programming: From Problem Analysis to Program Design, 3e Chapter 9 Arrays.
Chapter 9: Arrays and Strings
Chapter 9: Arrays and Strings
Arrays Data Structures - structured data are data organized to show the relationship among the individual elements. It usually requires a collecting mechanism.
Chapter 9: Arrays and Strings
C++ for Engineers and Scientists Third Edition
Chapter 8 Arrays and Strings
Arrays. Objectives Learn about arrays Explore how to declare and manipulate data into arrays Learn about “array index out of bounds” Become familiar with.
Arrays (Part II). Two- and Multidimensional Arrays Two-dimensional array: collection of a fixed number of components (of the same type) arranged in two.
1 Lecture 22:Applications of Arrays Introduction to Computer Science Spring 2006.
Arrays One-Dimensional initialize & display Arrays as Arguments Two-dimensional initialize & display Part I.
Chapter 8 Multidimensional Arrays C Programming for Scientists & Engineers with Applications by Reddy & Ziegler.
Prepared by MURLI MANOHAR PGT (COMPUTER SCIENCE) KV,B.E.G., PUNE.
Chapter 7: Arrays. In this chapter, you will learn about: One-dimensional arrays Array initialization Declaring and processing two-dimensional arrays.
Chapter 8 Arrays and Strings
1 DATA STRUCTURES: LISTS. 2 LISTS ARE USED TO WORK WITH A GROUP OF VALUES IN AN ORGANIZED MANNER. A SERIES OF MEMORY LOCATIONS CAN BE DIRECTLY REFERENCED.
EGR 2261 Unit 8 One-dimensional Arrays  Read Malik, pages in Chapter 8.  Homework #8 and Lab #8 due next week.  Quiz next week.
Java Programming: From Problem Analysis to Program Design, 4e
Chapter 9: Arrays J ava P rogramming: From Problem Analysis to Program Design, From Problem Analysis to Program Design, Second Edition Second Edition.
C++ Programming: From Problem Analysis to Program Design, Fifth Edition Arrays.
C++ for Engineers and Scientists Second Edition Chapter 11 Arrays.
Arrays  Array is a collection of same type elements under the same variable identifier referenced by index number.  Arrays are widely used within programming.
CHAPTER 7 arrays I NTRODUCTION T O C OMPUTER P ROGRAMMING (CSC425)
1 Topic: Array Topic: Array. 2 Arrays Arrays In this chapter, we will : Learn about arrays Learn about arrays Explore how to declare and manipulate data.
Section 5 - Arrays. Problem solving often requires information be viewed as a “list” List may be one-dimensional or multidimensional List is implemented.
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.
1 Arrays and Strings Lecture: Design Problem l Consider a program to calculate class average Why?? ?
Review for Final Exam. Contents 5 questions (20 points each) + 1 bonus question (20 points) – Basic concepts in Chapters 1-4 – Chapters 5-9 – Bonus: Chapter.
 2008 Pearson Education, Inc. All rights reserved. 1 Arrays and Vectors.
Liang, Introduction to C++ Programming, (c) 2007 Pearson Education, Inc. All rights reserved X 1 Chapter Array Basics.
1 Chapter 12 Arrays. 2 C++ Data Types structured array struct union class address pointer reference simple integral enum char short int long bool floating.
UniMAP Sem2-10/11 DKT121: Fundamental of Computer Programming1 Arrays.
CHAPTER 10 ARRAYS II Applications and Extensions.
Arrays.
1 Chapter 9 Arrays Java Programming from Thomson Course Tech, adopted by kcluk.
Module 1: Array ITEI222 - Advance Programming Language.
Java Programming: Chapter 9: Arrays
Arrays Declaring arrays Passing arrays to functions Searching arrays with linear search Sorting arrays with insertion sort Multidimensional arrays Programming.
C++ Array 1. C++ provides a data structure, the array, which stores a fixed-size sequential collection of elements of the same type. An array is used.
1 Chapter 9 Arrays Java Programming from Thomson Course Tech, adopted by kcluk.
Chapter 9 Arrays. Chapter Objectives Learn about arrays Explore how to declare and manipulate data into arrays Understand the meaning of “array index.
SEQUENTIAL AND OBJECT ORIENTED PROGRAMMING Arrays.
Chapter 9 Arrays. Chapter Objectives Learn about arrays Explore how to declare and manipulate data into arrays Understand the meaning of “array index.
Arrays. Arrays are objects that help us organize large amounts of information.
VISUAL C++ PROGRAMMING: CONCEPTS AND PROJECTS Chapter 7A Arrays (Concepts)
1 Why do we need arrays? Problem - Input 5 test scores => int test1,test2,test3,test4,test5 100 test scores? 10,000 employees? A structured data type is.
KUKUM-06/07 EKT120: Computer Programming 1 Week 6 Arrays-Part 1.
A FIRST BOOK OF C++ CHAPTER 7 ARRAYS. OBJECTIVES In this chapter, you will learn about: One-Dimensional Arrays Array Initialization Arrays as Arguments.
Array 1 ARRAY. array 2 Learn about arrays. Explore how to declare and manipulate data into arrays. Understand the meaning of “array index out of bounds.”
1 Arrays and Variable Length Parameter List  The syntax to declare a variable length formal parameter (list) is: dataType... identifier.
Chapter 9: Arrays J ava P rogramming: From Problem Analysis to Program Design, From Problem Analysis to Program Design,
EGR 2261 Unit 10 Two-dimensional Arrays
EGR 2261 Unit 9 One-dimensional Arrays
Chapter 8: Arrays Starting Out with C++ Early Objects Ninth Edition
Computer Programming BCT 1113
Basic Array Definition
Array Data Structure Chapter 6
Array Data Structure B.Ramamurthy 11/21/2018 B.Ramamurthy.
EKT150 : Computer Programming
Lecture 9 Objectives Learn about arrays.
Array Data Structure Chapter 6
Java Programming: Program Design Including Data Structures
Dr. Khizar Hayat Associate Prof. of Computer Science
Presentation transcript:

Opening Input/Output Files ifstream infile; ofstream outfile; char inFileName[40]; char outFileName[40]; cout<<"Enter the input file name: "; cin>>inFileName; infile.open(inFileName); //open input file. cout<<"Enter the output file name: "; cin>> outFileName; outfile.open(outFileName);//open out putfile

Arrays In this chapter, you will: Learn about arrays Explore how to declare and manipulate data into arrays Understand the meaning of “array index out of bounds” Become familiar with the restrictions on array processing Learn to use typedef statement Discover how to pass an array as a parameter to a function Learn about parallel arrays Discover how to manipulate data in a two-dimensional array Learn about multidimensional arrays

A data type is called simple if variables of that type can store only one value at a time. A structured data type (or data structure) is one in which each data item is a collection of other data items.  An array is a collection of a fixed number of components wherein all of the components are of the same data type.  A one-dimensional array is an array in which the components are arranged in a list form. The general form of declaring a one-dimensional array is: DataType arrayName[intExp];

Example: The statement int list[10]; declares an array list of 10 components. Each component is of the type int. The components are list[0], list[1] … list [9].

Accessing Array Components The general form (syntax) of accessing an array component is: arrayName[indexExp] where indexExp, called index, is any expression whose value is a nonnegative integer.  Index value specifies the position of the component in the array.  In C++, [] is an operator, called the array subscripting operator.  In C++ array index starts at 0.

list[5] = 34;

Declaring arrays USING typedef const int SIZE = 10; typedef double ListType[SIZE]; ListType a; ListType mylist; which is equivalent to double a[10]; double mylist[10];

Processing One-Dimensional Arrays  Some of the basic operations performed on a one-dimensional array are initialize, input data, output data stored in an array, find the largest and/or smallest element.  Each of these operations requires the ability to step through the elements of the array.  Stepping-through the elements of an array is easily accomplished by a loop.

Consider a list declared as an array of the SIZE 100  The following for loop steps-through each element of the array list starting at the first element of list. for(i = 0; i < SIZE; i++) process list[i]  If processing list requires inputting data into list, the statement in Line 2 takes the from of an input statement, such as the cin statement. for(i = 0; i >list[i];

Finding the sum and average of an array: sum = 0; for(index = 0; index < SIZE; index ++) sum = sum + list[index]; average = sum / SIZE; Finding the largest element in the array maxIndex = 0; for(index = 1; index < SIZE; index ++) if(list[maxIndex] < list[index]) maxIndex = index; largest = list[maxIndex];

Array Problems  In C++, there is no guard against indices that are out of bounds.  Assignment, comparison of arrays, reading data into an array and printing the contents of an array must be done component-wise. cin>>x; //illegal if (x < y) …; //illegal y = x; // illegal  In order to copy one array into another array use a loop. for(j = 0; j < arraySize; j++) y[j] = x[j];

Arrays as Parameters to Functions  By Reference Only: In C++, arrays are passed by reference only.  Since arrays are passed by reference only, we do not use the symbol & when declaring an array as a formal parameter. void initialize(ListType list, int SIZE) { int count; for(count = 0; count < SIZE; count++) list[count] = 0; }

Parallel Arrays Two (or more) Arrays are called parallel if their corresponding components hold related information. const int MAXSTUDENTS = 50; typedef int IdList [MAXSTUDENTS]; typedef char GradesList [MAXSTUDENTS]; IdList studentIds; GradeList courseGrades;

Two-dimensional Arrays A two-dimensional array is a collection of a fixed number of components arranged in two dimensions, and all components are of the same type.The syntax for declaring a two-dimensional array is: DataType arrayName[intexp1][intexp2]; where intexp1 and intexp2 are expressions yielding positive integer values. The two expressions intexp1 and intexp2 specify the number of rows and the number of columns, respectively, in the array. double sales[10][5]; declares a two-dimensional array sales of 10 rows and 5 columns and every component is of the type float.

Accessing Array Components The syntax to access a component of a two-dimensional array is arrayName[indexexp1][indexexp2] where indexexp1 and indexexp2 are expressions yielding nonnegative integer values. indexexp1 specifies the row position and indexexp2 specifies the column position. The statement sales[5][3] = 25.75; stores into row numbered 5 and column numbered 3 (that is, 6th row and 4th column) of the array sales. If int i = 5; int j = 3; then the previous statement is equivalent to sales[i][j] = 25.75;

Processing Two-dimensional Arrays A two-dimensional array can be processed in three different ways. 1. Process the entire array. 2. Process a particular row of the array, called row processing. 3. Process a particular column of the array, called column processing. When processing a particular row or column of a two-dimensional array we employ algorithms similar to when we process one- dimensional arrays.

Suppose that we want to process row number, say 5 of matrix. The components of row number 5 of matrix are:

const int ROWS = 7; const int COLUMNS = 6; int matrix[ROWS][COLUMNS]; int row; int col; int sum; int largest; int temp; //In these components the first index is fixed at 5. row = 5; //The second index ranges from 0 to 5. for(col = 0; col < COLUMNS; col++) process matrix[row][col]

Similarly, suppose that we want to process column number 2 of matrix, that is, the third column of matrix. The components of this column are:

The second index is fixed at 2 and the first index ranges from 0 to 6. The following for loop processes column 2 of matrix. col = 2; for(row = 0; row < ROWS; row++) process matrix[row][col]

Print The following nested for loops print the components of matrix, one row per line. for(row = 0; row < ROWS; row++) { for(col = 0; col < COLUMNS; col++) cout<<setw(5)<<matrix[row][col]<<" "; cout<<endl; }

Largest Element in Each Row and Each Column //Largest element in each row for(row = 0; row < ROWS; row++) { largest = matrix[row][0]; for(col = 1; col < COLUMNS; col++) if(largest < matrix[row][col]) largest = matrix[row][col]; cout<<"Largest element of row "<<row+1 <<" = "<<largest<<endl; }

//Largest element in each column for(col = 0; col < COLUMNS; col++) { largest = matrix[0][col]; for(row = 1; row < rows; row++) if(largest < matrix[row][col]) largest = matrix[row][col]; cout<<"Largest element of col "<<col+1 <<" = "<<largest<<endl; }

Other forms of Declaring Two-dimensional Arrays const int ROWS = 20; const int COLUMNS = 10; typedef int TableType[ROWS][COLUMNS]; We can declare variables of the type T ableType. tableType matrix;

Passing Two-dimensional Arrays as Parameters to Functions Two-dimensional arrays can be passed as parameters to a function and they are passed by reference. When storing a two-dimensional array in the computer’s memory, C++ uses the row order form. That is, first the first row is stored, followed by the second row, which is followed by the third row and so on. void initialize(TableType table) {int row; int col; for(row = 0; row < ROWS; row++) for(col = 0; col < COLUMNS; col++) table[row][col] = 0; }

Multi-dimensional Arrays Array: An array is a collection of a fixed number of elements (called components) arranged in n dimensions (n >= 1), called an n - dimensional array. The general syntax of declaring an n -dimensional array is: dataType arrayName[intExp1][intExp2]...[intExpn]; where intExp1, intExp2, …, and intExpn are constant expressions yielding positive integer values.

The syntax of accessing a component of an n-dimensional array is: arrayName[indexExp1][indexExp2]...[indexExpn] where indexExp1, indexExp2,..., and indexExpn are expressions yielding nonnegative integer values. indexExpi gives the position of the array component in the ith dimension.

The statement double carDealers[10][5][7]; declares carDealers to be a three-dimensional array.  Size of the first dimension is 10 and it ranges from 0 to 9.  The size of the second dimension is 5 and it ranges from 0 to 4.  The size of the third dimension is 7 and it ranges from 0 to 6.  The base address of the array carDealers is the address of the first array component, that is the address of carDealers[0][0][0].  The total number of components in the array carDealers is 10*5*7 = 350.

carDealers[5][3][2] = ; for(i = 0; i < 10; i++) for(j = 0; j < 5; j++) for(k = 0; k < 7; k++) carDealers[i][j][k] = 0.0; initializes the entire array to 0.0.