Dale Roberts Department of Computer and Information Science, School of Science, IUPUI CSCI 230 Arrays Dale Roberts, Lecturer

Slides:



Advertisements
Similar presentations
Arrays. Introduction Arrays –Structures of related data items –Static entity - same size throughout program A few types –C-like, pointer-based arrays.
Advertisements

 2003 Prentice Hall, Inc. All rights reserved. 1 Chapter 4 - Arrays Outline 4.1Introduction 4.2Arrays 4.3Declaring Arrays 4.4Examples Using Arrays 4.5Passing.
 2000 Prentice Hall, Inc. All rights reserved. 1 Chapter 4 - Arrays Outline 4.1Introduction 4.2Arrays 4.3Declaring Arrays 4.4Examples Using Arrays 4.5Passing.
 2003 Prentice Hall, Inc. All rights reserved Introduction Arrays –Structures of related data items –Static entity (same size throughout program)
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 6 - Arrays Outline 6.1Introduction 6.2Arrays.
Review (Week1) C++_ the unit of programming is the class from which objects are eventually instantiated. C++ classes contain functions that implement class.
 2000 Prentice Hall, Inc. All rights reserved. Chapter 6 - Arrays Outline 6.1Introduction 6.2Arrays 6.3Declaring Arrays 6.4Examples Using Arrays 6.5Passing.
 2003 Prentice Hall, Inc. All rights reserved. 1 Arrays –Structures of related data items –Static entity (same size throughout program) A few types –Pointer-based.
Chapter 6 C Arrays Acknowledgment The notes are adapted from those provided by Deitel & Associates, Inc. and Pearson Education Inc. Arrays are data structures.
 2003 Prentice Hall, Inc. All rights reserved Multiple-Subscripted Arrays Multiple subscripts –a[ i ][ j ] –Tables with rows and columns –Specify.
 2003 Prentice Hall, Inc. All rights reserved. 1 Chapter 4 - Arrays Outline 4.1Introduction 4.2Arrays 4.3Declaring Arrays 4.4Examples Using Arrays 4.5Passing.
 2007 Pearson Education, Inc. All rights reserved. 1 C Arrays.
 2007 Pearson Education, Inc. All rights reserved C Arrays.
Programming Languages -1 (Introduction to C) arrays Instructor: M.Fatih AMASYALI
 2007 Pearson Education, Inc. All rights reserved C Arrays.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 6 - Arrays Outline 6.1Introduction 6.2Arrays.
CSC141- Introduction to Computer programming Teacher: AHMED MUMTAZ MUSTEHSAN Lecture – 19 Thanks for Lecture Slides:
Chapter 6 Arrays Associate Prof. Yuh-Shyan Chen Dept. of Computer Science and Information Engineering National Chung-Cheng University.
Arrays CE 102 Algorithms and Programming KTO Karatay University Arrays are data structures consisting of data items of the same type Arrays are not dynamic.
Algorithm and Programming Array Dr. Ir. Riri Fitri Sari MM MSc International Class Electrical Engineering Dept University of Indonesia 15 March 2009.
 2000 Prentice Hall, Inc. All rights reserved Arrays Array –Group of consecutive memory locations –Same name and type To refer to an element, specify.
Arrays Array –Group of consecutive memory locations –Same name and type To refer to an element, specify –Array name –Position number Format: arrayname.
C Lecture Notes 1 Arrays Lecture 6. C Lecture Notes 2 6.1Introduction Arrays –Structures of related data items –Static entity – same size throughout program.
chap8 Chapter 8 Arrays (reference: Deitel ’ s chap 6)
1 Arrays as Lists with examples. 2 Review Arrays –Structures of related data items of the same type –Data items (called array elements) are stored at.
 2003 Prentice Hall, Inc. All rights reserved. 1 Chapter 4 - Arrays Outline 4.1Introduction 4.2Arrays 4.3Declaring Arrays 4.4Examples Using Arrays 4.5Passing.
1 Lecture 8 Arrays Part II Sorting Arrays Sorting data  Important computing application  Virtually every organization must sort some data Massive.
1 Chapter 4 - Arrays Outline 4.1Introduction 4.2Arrays 4.3Declaring Arrays 4.4Examples Using Arrays 4.5Passing Arrays to Functions 4.6Sorting Arrays 4.7Case.
 2000 Deitel & Associates, Inc. All rights reserved. Chapter 4 - Arrays Outline 4.1Introduction 4.2Arrays 4.3Declaring Arrays 4.4Examples Using Arrays.
 2007 Pearson Education, Inc. All rights reserved C Arrays.
 2003 Prentice Hall, Inc. All rights reserved. 1 Arrays Outline Multidimensional Arrays Case Study: Computing Mean, Median and Mode Using Arrays.
 2008 Pearson Education, Inc. All rights reserved. 1 Arrays and Vectors.
C How to Program, 7/e © by Pearson Education, Inc. All Rights Reserved.
 2003 Prentice Hall, Inc. All rights reserved. 1 Chapter 4 - Arrays Outline 4.1Introduction 4.2Arrays 4.3Declaring Arrays 4.4Examples Using Arrays 4.5Passing.
C Lecture Notes 1 Arrays (...cont.). C Lecture Notes 2 6.6Sorting Arrays Sorting data –Important computing application –Virtually every organization must.
 2003 Prentice Hall, Inc. All rights reserved. Outline 1 fig04_03.cpp (1 of 2) 1 // Fig. 4.3: fig04_03.cpp 2 // Initializing an array. 3 #include 4 5.
C++ Programming Lecture 16 Arrays – Part III The Hashemite University Computer Engineering Department (Adapted from the textbook slides)
 2000 Prentice Hall, Inc. All rights reserved. 1 Chapter 4 - Arrays Outline 4.1Introduction 4.2Arrays 4.3Declaring Arrays 4.4Examples Using Arrays 4.5Passing.
SEQUENTIAL AND OBJECT ORIENTED PROGRAMMING Arrays.
1 Lecture 4: Part1 Arrays Introduction Arrays  Structures of related data items  Static entity (same size throughout program)
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Arrays Outline 6.1Introduction 6.2Arrays 6.3Declaring.
CHAPTER 3 ARRAYS Dr. Shady Yehia Elmashad. Outline 1.Introduction 2.Arrays 3.Declaring Arrays 4.Examples Using Arrays 5.Multidimensional Arrays 6.Multidimensional.
Dale Roberts Department of Computer and Information Science, School of Science, IUPUI CSCI N305 Arrays Case Study.
 2000 Prentice Hall, Inc. All rights reserved Arrays Array –Consecutive group of memory locations –Same name and type To refer to an element, specify.
CSC 113: C OMPUTER P ROGRAMMING (T HEORY = 03, L AB = 01) Computer Science Department Bahria University, Islamabad.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Arrays + Functions Outline 6.5Passing Arrays to Functions.
Arrays Outline 1 Introduction 2 Arrays 3 Declaring Arrays
Arrays Declarations CSCI N305
C++ Programming Lecture 15 Arrays – Part II
آرايه ها اصول كامپيوتر 1.
C++ Programming Lecture 15 Arrays – Part II
C Arrays.
Multidimensional Arrays
Chapter 6 - Arrays Outline 6.1 Introduction 6.2 Arrays
C Arrays.
Dale Roberts, Lecturer IUPUI
Chapter 6 - Arrays Outline 6.1 Introduction 6.2 Arrays
Chapter 9 - Arrays Outline 6.1 Introduction 6.2 Arrays
Arrays Outline Introduction Arrays Declaring Arrays
Chapter 6 - Arrays Outline 6.1 Introduction 6.2 Arrays
Arrays Strings and Parameter Passing CSCI N305
4.1 Introduction Arrays A few types Structures of related data items
6 C Arrays.
Chapter 4 - Arrays Outline 4.1 Introduction 4.2 Arrays
Capitolo 4 - Arrays Outline 4.1 Introduction 4.2 Arrays
Arrays.
Chapter 3 Arrays Dr. A. PHILIP AROKIADOSS Assistant Professor
Dale Roberts, Lecturer IUPUI
Vectors.
4.9 Multiple-Subscripted Arrays
Presentation transcript:

Dale Roberts Department of Computer and Information Science, School of Science, IUPUI CSCI 230 Arrays Dale Roberts, Lecturer

Dale Roberts Arrays Array Group of consecutive memory locations Same name and type, ex: an array of integers To refer to an element, specify Array name Position number of particular element in the array Format: array_name [ position number ] First element at position 0 n element array named c : n element array named c : c[ 0 ], c[ 1 ]... c[ n – 1 ] Example: int my_array[12] my_array[0]= -45  value stored my_array[0]= -45  value stored Position number must be an integer number or an integer expression Example: my_array[1.5]  ERROR!! my_array[i+j]  valid if i and j are integers my_array[i+j]  valid if i and j are integers Name of array (Note that all elements of this array have the same name, my_array ) Position number of the element within array my_array My_array[0] My_array[1] My_array[2] My_array[3] My_array[4] My_array[5] My_array[6] My_array[7] My_array[8] My_array[9] My_array[10] My_array[11]

Dale Roberts Arrays (cont.) Array elements are like normal variables my_array[8] = -3; printf( "%d", my_array[8]); Perform operations in subscript. If x equals 3: my_array[ ] == my_array[ 3 ] == my_array[ x ] my_array[ ] == my_array[ 3 ] == my_array[ x ] Declaring Arrays When declaring arrays, specify Name Type of array Number of elements: arrayType arrayName[ numberOfElements ]; Examples: int c[ 100 ]; /* reserve memory sufficient enough to store 100 elements of type integer */ elements of type integer */ float myArray[ 3284 ]; float myArray[ 3284 ];

Dale Roberts Arrays (cont.) Declaring multiple arrays of same type: format similar to regular variables Example: int b[ 100 ], x[ 27 ]; Arrays may be declared to contain other data types Example: int a[ 100 ]; float b[ 100 ]; char c[ 100 ]; /* Strings are stored by using character arrays */ Example: #include #include /* a simple program that uses arrays */ main({ int i, array_int[100]; for (i=0; i<100; i++) array_int[i]=0; printf(“element %d: %d\n”, i, array_int[i]); }

Dale Roberts Arrays (cont.) Initializers int n[5] = {1, 2, 3, 4, 5}; Example: main() { int i, a[10]={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; for (i=0; i<10; i++) printf(“Element: %d\n”, a[i]); } If there are fewer initializations than elements in the array, then the remaining elements are automatically initialized to 0. int n[5] = {0} /* All elements 0 */ int a[10] = {1, 2}/* a[2] to a[9] are initialized to zeros */ int b[5] = {1, 2, 3, 4, 5, 6}/* syntax error */ C arrays have no bounds checking If size omitted, initializers determine it int n[ ] = { 1, 2, 3, 4, 5 }; /* 5 initializers, therefore 5 element array */ Scalable Arrays: a better programming style #define SIZE 10 int c[SIZE]; /* defines a symbolic constant size with value 10 */

Dale Roberts 1/* Fig. 6.8: fig06_08.c 2 Histogram printing program */ 3#include 4#define SIZE int main() 7{7{ 8 int n[ SIZE ] = { 19, 3, 15, 7, 11, 9, 13, 5, 17, 1 }; 9 int i, j; printf( "%s%13s%17s\n", "Element", "Value", "Histogram" ); for ( i = 0; i <= SIZE - 1; i++ ) { 14 printf( "%7d%13d ", i, n[ i ]) ; for ( j = 1; j <= n[ i ]; j++ ) /* print one bar */ 17 printf( "%c", '*' ); printf( "\n" ); 20 } return 0; 23} Element Value Histogram 0 19 ******************* 1 3 *** 2 15 *************** 3 7 ******* 4 11 *********** 5 9 ********* 6 13 ************* 7 5 ***** 8 17 ***************** 9 1 * 1. Initialize array 2. Loop 3. Print Program output

Dale Roberts Arrays (cont.) Example : #include #define SIZE 100 main() { int i, a[SIZE]; int sum = 0; … for (i=0; i< size; i++) sum = sum + a[i]; printf(“sum: %d\n, sum); }

Dale Roberts Character arrays String is really a static array of characters, ex: “first” Character arrays can be initialized using string literals char string1[] = "first"; Null character '\0' terminates strings string1 actually has 6 elements It is equivalent to char string1[] = { 'f', 'i', 'r', 's', 't', '\0' }; Can access individual characters string1[ 3 ] is character ‘s’ Array name is address of array, so & not needed for scanf char string2[20]; scanf( "%s", string2 ); /* can read a string with max of size 19 and a null character */ null character */ Reads characters until whitespace (space, tab, carriage-return, newline, vertical tab) encountered Can write beyond end of array, be careful Character Arrays f i r s t \0 Null character (indicates string termination) & is NOT used, why?

Dale Roberts 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 Arrays passed call-by-reference the called functions can modify the element values in the caller’s original array the called functions can modify the element values in the caller’s original array Name of array is the address of first element of the array Function knows where the array is stored. Therefore, when the called function modifies array elements in its function body, it is modifying the actual elements of array in the original memory locations Pass array name Size is also often sent as an argument … myArray main() myFunction()

Dale Roberts Passing Arrays to Functions (cont.) Example: #include Example: #include main(){ int a[10]; printf(“a = %p \n &a[0] = %p\n”, a, &a[0]); } output: a = FFEE &a[0] = FFEE Passing array elements Individual elements of an array are passed by call-by-value Pass subscripted name (i.e., myArray[ 3 ] ) to function Example: compare(a[0], a[1]); An array is a vector while individual elements are scalars. 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 will be passed by value

Dale Roberts 1/* Fig. 6.13: fig06_13.c 2 Passing arrays and individual array elements to functions */ 3#include 4#define SIZE 5 5 6void modifyArray( int [], int ); /* appears strange */ 7void modifyElement( int ); 8 9int main() 10{ 11 int a[ SIZE ] = { 0, 1, 2, 3, 4 }, i; printf( "Effects of passing entire array call " 14 "by reference:\n\nThe values of the " 15 "original array are:\n" ); for ( i = 0; i <= SIZE - 1; i++ ) 18 printf( "%3d", a[ i ] ); printf( "\n" ); 21 modifyArray( a, SIZE ); /* passed call by reference */ 22 printf( "The values of the modified array are:\n" ); for ( i = 0; i <= SIZE - 1; i++ ) 25 printf( "%3d", a[ i ] ); printf( "\n\n\nEffects of passing array element call " 28 "by value:\n\nThe value of a[3] is %d\n", a[ 3 ] ); 29 modifyElement( a[ 3 ] ); 30 printf( "The value of a[ 3 ] is %d\n", a[ 3 ] ); 31 return 0; 32} Entire arrays passed call-by- reference, and can be modified Array elements passed call-by- value, and cannot be modified Function definitions Pass array to a function Pass array element to a function Print

Dale Roberts Function definitions 33 34void modifyArray( int b[], int size ) 35{ 36 int j; for ( j = 0; j <= size - 1; j++ ) 39 b[ j ] *= 2; 40} 41 42void modifyElement( int e ) 43{ 44 printf( "Value in modifyElement is %d\n", e *= 2 ); 45} Effects of passing entire array call by reference: The values of the original array are: The values of the modified array are: Effects of passing array element call by value: The value of a[3] is 6 Value in modifyElement is 12 The value of a[3] is 6 Program Output

Dale Roberts Multiple-Dimensional Arrays Multiple subscripted arrays Arrays require at least two subscripts to identify a particular element ANSI C standard allows at least 12 array subscripts 2D Arrays Tables with rows and columns ( m by n array) Like matrices: specify row, then column Row 0 Row 1 Row 2 Column 0Column 1Column 2Column 3 a[ 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 subscript Array name Column subscript A : scalar A[0] : 1D array 1-Dimensional vector A[0][0] : (2 subscripts) 2D array (matrix) 2-dimensional vector A common error is to use math matrix notation a(1,2)

Dale Roberts Multiple-Subscripted Arrays Initialization int b[2][2] = {{ 1, 2 }, { 3, 4 } }; int c[3][2] = {{ 1, 2 }, { 3, 4 }, { 5, 6 }}; Initializers grouped by row in braces If not enough, unspecified elements set to zero int b[ 2 ][ 2 ] = { { 1 }, { 3, 4 } }; Referencing elements Specify row, then column printf( "%d", b[ 0 ][ 1 ] ); Actual storage in the memory - rows by rows -“row-major”

Dale Roberts 1/* Fig. 6.22: fig06_22.c 2 Double-subscripted array example */ 3#include 4#define STUDENTS 3 5#define EXAMS 4 6 7int minimum( const int [][ EXAMS ], int, int ); 8int maximum( const int [][ EXAMS ], int, int ); 9double average( const int [], int ); 10void printArray( const int [][ EXAMS ], int, int ); 11 12int main() 13{ 14 int student; 15 const int studentGrades[ STUDENTS ][ EXAMS ] = 16 { { 77, 68, 86, 73 }, 17 { 96, 87, 89, 78 }, 18 { 70, 90, 86, 81 } }; printf( "The array is:\n" ); 21 printArray( studentGrades, STUDENTS, EXAMS ); 22 printf( "\n\nLowest grade: %d\nHighest grade: %d\n", 23 minimum( studentGrades, STUDENTS, EXAMS ), 24 maximum( studentGrades, STUDENTS, EXAMS ) ); for ( student = 0; student <= STUDENTS - 1; student++ ) 27 printf( "The average grade for student %d is %.2f\n", 28 student, 29 average( studentGrades[ student ], EXAMS ) ); return 0; 32} Each row is a particular student, each column is the grades on the exam. Proper naming of the #defined constants is important to convey meaning. Initialize variables Define functions to take double scripted arrays Initialize studentgrades[][] Call functions minimum, maximum, and average const forces pass-by-value even though the parameter is a pointer

Dale Roberts 33 34/* Find the minimum grade */ 35int minimum( const int grades[][ EXAMS ], 36 int pupils, int tests ) 37{ 38 int i, j, lowGrade = 100; for ( i = 0; i <= pupils - 1; i++ ) 41 for ( j = 0; j <= tests - 1; j++ ) 42 if ( grades[ i ][ j ] < lowGrade ) 43 lowGrade = grades[ i ][ j ]; return lowGrade; 46} 47 48/* Find the maximum grade */ 49int maximum( const int grades[][ EXAMS ], 50 int pupils, int tests ) 51{ 52 int i, j, highGrade = 0; for ( i = 0; i <= pupils - 1; i++ ) 55 for ( j = 0; j <= tests - 1; j++ ) 56 if ( grades[ i ][ j ] > highGrade ) 57 highGrade = grades[ i ][ j ]; return highGrade; 60} 61 62/* Determine the average grade for a particular exam */ 63double average( const int setOfGrades[], int tests ) 64{ Why is it important to initialize lowGrade to the highest possible grade, and highGrade to the lowest possible grade?

Dale Roberts 65 int i, total = 0; for ( i = 0; i <= tests - 1; i++ ) 68 total += setOfGrades[ i ]; return ( double ) total / tests; 71} 72 73/* Print the array */ 74void printArray( const int grades[][ EXAMS ], 75 int pupils, int tests ) 76{ 77 int i, j; printf( " [0] [1] [2] [3]" ); for ( i = 0; i <= pupils - 1; i++ ) { 82 printf( "\nstudentGrades[%d] ", i ); for ( j = 0; j <= tests - 1; j++ ) 85 printf( "%-5d", grades[ i ][ j ] ); 86 } 87} Define function The array is: [0] [1] [2] [3] studentGrades[0] studentGrades[1] studentGrades[2] Lowest grade: 68 Highest grade: 96 The average grade for student 0 is The average grade for student 1 is The average grade for student 2 is Program Output

Dale Roberts Sorting Arrays Sorting data Important computing application Virtually every organization must sort some data Bubble sort (sinking sort) Several passes through the array Successive pairs of elements are compared If increasing order (or identical ), no change If decreasing order, elements exchanged Repeat Example: original: pass 1: pass 2: Small elements "bubble" to the top

Dale Roberts Case Study: Computing Mean, Median and Mode Using Arrays Mean – average Median – number in middle of sorted list Example: 1, 2, 3, 4, 5  3 is the median Mode – number that occurs most often Example: 1, 1, 1, 2, 3, 3, 4, 5  1 is the mode 1/* Fig. 6.16: fig06_16.c 2 This program introduces the topic of survey data analysis. 3 It computes the mean, median, and mode of the data */ 4#include 5#define SIZE void mean( const int [] ); 8void median( int [] ); 9void mode( int [], const int [] ) ; 10void bubbleSort( int [] ); 11void printArray( const int [] ); 12 13int main() 14{ 15 int frequency[ 10 ] = { 0 }; Function prototypes

Dale Roberts 33 34void mean( const int answer[] ) 35{ 36 int j, total = 0; printf( "%s\n%s\n%s\n", "********", " Mean", "********" ); for ( j = 0; j <= SIZE - 1; j++ ) 41 total += answer[ j ]; printf( "The mean is the average value of the data\n" 44 "items. The mean is equal to the total of\n" 45 "all the data items divided by the number\n" 46 "of data items ( %d ). The mean value for\n" 47 "this run is: %d / %d = %.4f\n\n", 48 SIZE, total, SIZE, ( double ) total / SIZE ); 49} 16 int response[ SIZE ] = 17 { 6, 7, 8, 9, 8, 7, 8, 9, 8, 9, 18 7, 8, 9, 5, 9, 8, 7, 8, 7, 8, 19 6, 7, 8, 9, 3, 9, 8, 7, 8, 7, 20 7, 8, 9, 8, 9, 8, 9, 7, 8, 9, 21 6, 7, 8, 7, 8, 7, 9, 8, 9, 2, 22 7, 8, 9, 8, 9, 8, 9, 7, 5, 3, 23 5, 6, 7, 2, 5, 3, 9, 4, 6, 4, 24 7, 8, 9, 6, 8, 7, 8, 9, 7, 8, 25 7, 4, 4, 2, 5, 3, 8, 7, 5, 6, 26 4, 5, 6, 1, 6, 5, 7, 8, 7 }; mean( response ); 29 median( response ); 30 mode( frequency, response ); 31 return 0; 32} Define function mean Initialize array Call functions mean, median, and mode

Dale Roberts Define function median Sort Array Print middle element Define function mode Increase frequency[] depending on response[] 65} 66 67void mode( int freq[], const int answer[] ) 68{ 69 int rating, j, h, largest = 0, modeValue = 0; printf( "\n%s\n%s\n%s\n", 72 "********", " Mode", "********" ); for ( rating = 1; rating <= 9; rating++ ) 75 freq[ rating ] = 0; for ( j = 0; j <= SIZE - 1; j++ ) 78 ++freq[ answer[ j ] ]; void median( int answer[] ) 52{ 53 printf( "\n%s\n%s\n%s\n%s", 54 "********", " Median", "********", 55 "The unsorted array of responses is" ); printArray( answer ); 58 bubbleSort( answer ); 59 printf( "\n\nThe sorted array is" ); 60 printArray( answer ); 61 printf( "\n\nThe median is element %d of\n" 62 "the sorted %d element array.\n" 63 "For this run the median is %d\n\n", 64 SIZE / 2, SIZE, answer[ SIZE / 2 ] ); Notice how the subscript in freq[] is the value of an element in response[] (answer[]) Is this computation of the median element correct? Notice that SIZE must be add for this to be correct. Is SIZE odd?

Dale Roberts 95 printf( "\n" ); 96 } printf( "The mode is the most frequent value.\n" 99 "For this run the mode is %d which occurred" 100 " %d times.\n", modeValue, largest ); 101} printf( "%s%11s%19s\n\n%54s\n%54s\n\n", 81 "Response", "Frequency", "Histogram", 82 " ", " " ); for ( rating = 1; rating <= 9; rating++ ) { 85 printf( "%8d%11d ", rating, freq[ rating ] ); if ( freq[ rating ] > largest ) { 88 largest = freq[ rating ]; 89 modeValue = rating; 90 } for ( h = 1; h <= freq[ rating ]; h++ ) 93 printf( "*" ); 94 Print stars depending on value of frequency[]

Dale Roberts printf( "%2d", a[ j ] ); 128 } 129 } 103 void bubbleSort( int a[] ) 104 { 105 int pass, j, hold; for ( pass = 1; pass <= SIZE - 1; pass++ ) for ( j = 0; j <= SIZE - 2; j++ ) if ( a[ j ] > a[ j + 1 ] ) { 112 hold = a[ j ]; 113 a[ j ] = a[ j + 1 ]; 114 a[ j + 1 ] = hold; 115 } 116 } void printArray( const int a[] ) 119 { 120 int j; for ( j = 0; j <= SIZE - 1; j++ ) { if ( j % 20 == 0 ) 125 printf( "\n" ); Bubble sort: if elements out of order, swap them. Define bubbleSort Define printArray Bubble sort can make the smallest values “sink” by scanning top to bottom using.

Dale Roberts Program Output ******** Mean ******** The mean is the average value of the data items. The mean is equal to the total of all the data items divided by the number of data items (99). The mean value for this run is: 681 / 99 = ******** Median ******** The unsorted array of responses is The sorted array is The median is element 49 of the sorted 99 element array. For this run the median is 7 ******** Mode ******** Response Frequency Histogram * 2 3 *** 3 4 **** 4 5 ***** 5 8 ******** 6 9 ********* 7 23 *********************** 8 27 *************************** 9 19 ******************* The mode is the most frequent value. For this run the mode is 8 which occurred 27 times.

Dale Roberts Searching Arrays: Linear Search vs Binary Search Search an array for a key value Linear search Simple Compare each element of array with key value Useful for small and unsorted arrays Binary search For sorted arrays Compares middle element with key If equal, match found If key < middle, looks in first half of array If key > middle, looks in last half Repeat Very fast; at most n steps, where 2 n > number of elements 30 element array takes at most 5 steps 2 5 > 30 so at most 5 steps