1D Arrays and Random Numbers Artem A. Lenskiy, PhD May 26, 2014.

Slides:



Advertisements
Similar presentations
Introduction to C Programming
Advertisements

The debugger Some programs may compile correctly, yet not produce the desirable results. These programs are valid and correct C programs, yet not the programs.
C Structures What is a structure? A structure is a collection of related variables. It may contain variables of many different data types---in contrast.
An introduction to pointers in c
Chapter 7 - Functions. Functions u Code group that performs single task u Specification refers to what goes into and out of function u Design refers to.
Topic 9 – Introduction To Arrays. CISC105 – Topic 9 Introduction to Data Structures Thus far, we have seen “simple” data types. These refers to a single.
Arrays Hanly - Chapter 7 Friedman-Koffman - Chapter 9.
Programming Assignment 8 CS113 Spring Programming Assignment 8 Implement the sorting routine of your choice. Compare average performance of your.
1 Lecture 9  Arrays  Declaration  Initialization  Applications  Pointers  Declaration  The & and * operators  NULL pointer  Initialization  Readings:
 2006 Pearson Education, Inc. All rights reserved Arrays.
Chapter 6 C Arrays Acknowledgment The notes are adapted from those provided by Deitel & Associates, Inc. and Pearson Education Inc. Arrays are data structures.
1 Random numbers Random  completely unpredictable. No way to determine in advance what value will be chosen from a set of equally probable elements. Impossible.
Arrays Data Structures - structured data are data organized to show the relationship among the individual elements. It usually requires a collecting mechanism.
Chapter 8 Arrays and Strings
1 CSCE 1030 Computer Science 1 Arrays Chapter 7 in Small Java.
 2007 Pearson Education, Inc. All rights reserved C Arrays.
 Pearson Education, Inc. All rights reserved Arrays.
1/25 Pointer Logic Changki PSWLAB Pointer Logic Daniel Kroening and Ofer Strichman Decision Procedure.
1 CISC181 Introduction to Computer Science Dr. McCoy Lecture 19 Clicker Questions November 3, 2009.
Programming Languages -1 (Introduction to C) arrays Instructor: M.Fatih AMASYALI
Nirmalya Roy School of Electrical Engineering and Computer Science Washington State University Cpt S 122 – Data Structures Custom Templatized Data Structures.
A First Book of ANSI C Fourth Edition Chapter 6 Modularity Using Functions: Part I.
 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.
Chapter 8 Arrays and Strings
JAVA: An Introduction to Problem Solving & Programming, 5 th Ed. By Walter Savitch and Frank Carrano. ISBN © 2009 Pearson Education, Inc., Upper.
 Pearson Education, Inc. All rights reserved Arrays.
Arrays Module 6. Objectives Nature and purpose of an array Using arrays in Java programs Methods with array parameter Methods that return an array Array.
18. DECLARATIONS.
Lecture Set 9 Arrays, Collections and Repetition Part C - Random Numbers Rectangular and Jagged arrays.
Nirmalya Roy School of Electrical Engineering and Computer Science Washington State University Cpt S 122 – Data Structures Pointers.
 2008 Pearson Education, Inc. All rights reserved Case Study: Random Number Generation C++ Standard Library function rand – Introduces the element.
Data TypestMyn1 Data Types The type of a variable is not set by the programmer; rather, it is decided at runtime by PHP depending on the context in which.
C++ Programming Lecture 10 Functions – Part II
Copyright 2005, The Ohio State University 1 Pointers, Dynamic Data, and Reference Types Review on Pointers Reference Variables Dynamic Memory Allocation.
CS 161 Introduction to Programming and Problem Solving Chapter 19 Single-Dimensional Arrays Herbert G. Mayer, PSU Status 10/8/2014 Initial content copied.
 2007 Pearson Education, Inc. All rights reserved C Structures, Unions, Bit Manipulations and Enumerations.
Understanding Data Types and Collections Lesson 2.
Section 5 - Arrays. Problem solving often requires information be viewed as a “list” List may be one-dimensional or multidimensional List is implemented.
+ Structures and Unions. + Introduction We have seen that arrays can be used to represent a group of data items that belong to the same type, such as.
 2007 Pearson Education, Inc. All rights reserved C Arrays.
 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.
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.
Array Declarations Arrays contain a fixed number of variables of identical type Array declaration and allocation are separate operations Declaration examples:
+ Arrays & Random number generator. + Introduction In addition to arrays and structures, C supports creation and manipulation of the following data structures:
Arrays.
Computer Programming for Engineers
COMPUTER PROGRAMMING. Array C++ provides a data structure, the array, which stores a fixed-size sequential collection of elements of the same type. An.
JAVA: An Introduction to Problem Solving & Programming, 5 th Ed. By Walter Savitch and Frank Carrano. ISBN © 2008 Pearson Education, Inc., Upper.
ONE DIMENSIONAL ARRAYS AND RANDOM NUMBERS. Introduction In addition to arrays and structures, C supports creation and manipulation of the following data.
Module 1: Array ITEI222 - Advance Programming Language.
Arrays Chapter 7. MIS Object Oriented Systems Arrays UTD, SOM 2 Objectives Nature and purpose of an array Using arrays in Java programs Methods.
Function Call Stack and Activation Frame Stack Just like a pile of dishes Support Two operations push() pop() LIFO (Last-In, First-Out) data structure.
SEQUENTIAL AND OBJECT ORIENTED PROGRAMMING Arrays.
Programming Logic and Design Fifth Edition, Comprehensive Chapter 6 Arrays.
Chapter 7 - Functions. Functions u Code group that performs single task u Specification refers to what goes into and out of function u Design refers to.
1 ENERGY 211 / CME 211 Lecture 4 September 29, 2008.
Arrays. C++ Style Data Structures: Arrays(1) An ordered set (sequence) with a fixed number of elements, all of the same type, where the basic operation.
 2005 Pearson Education, Inc. All rights reserved Arrays.
Chapter INTRODUCTION Data Types and Arithmetic Calculations.
1 Multidimensional Arrays Chapter 13 2 The plural of mongoose starts with a "p" Initializing a multidimensional array Processing by.
Beginning C for Engineers Fall 2005 Arrays, 2-D arrays, character strings Bettina Schimanski Lecture 5: Section 2 (9/28/05) Section 4 (9/29/05)
Arrays An array is a sequence of objects all of which have the same type. The objects are called the elements of the array and are numbered consecutively.
C LANGUAGE UNIT 3. UNIT 3 Arrays Arrays – The concept of array – Defining arrays – Initializing arrays.
Functions and an Introduction to Recursion
BY GAWARE S.R. COMPUTER SCI. DEPARTMENT
Arrays … The Sequel Applications and Extensions
7 Arrays.
Presentation transcript:

1D Arrays and Random Numbers Artem A. Lenskiy, PhD May 26, 2014

Introduction In addition to arrays and structures, C supports creation and manipulation of the following data structures: Linked lists Stacks Queues Trees Data Types Derived typesFundamental typesUser-defined types Arrays Functions Pointers Integral types Float types Character types Structures Unions Enumerations

Introduction An array is a fixed-size sequenced collection of elements of the same data type. List of temperatures recorded every hour in a day, or a month, or a year. List of employees in an organization. List of products and their cost sold by a store. Test scores of a class of students. List of customers and their telephone numbers Table of daily rainfall data.

Arrays : Declaration An array declaration tells the compiler how many elements the array contains and what the type is for these elements. The number enclosed in the brackets indicates the number of elements in the array. The numbering starts with 0. Candy[0] is the first element. Candy[364] is the 365th and last element. type variable-name [size]

Arrays : Initialization When you use empty brackets to initialize an array, the compiler counts the number of items in the list and makes the array that large. sizeof days is the size, in bytes, of the whole array, and sizeof days[0] is the size, in bytes, of one element. Using const with Arrays The program treat each element in the array as a constant

Array can be explicitly initialized at run time. i threshold[i] We can use scanf() to initialize array Arrays Run-time initialization

Arrays Run-time initialization: Example Given the list of marks obtained by a class of 50 students in an annual examination. 43,65,51,27,79,11,56,61,82,09,25,36,07,49,55,63,74,81,49,37, 40,49,16,75,87,91,33,24,58,78,65,56,76,67,45,54,36,63,12,21 73,49,51,19,39,49,68,93,85,59 Write a program to count the number of students belonging to each of following groups of marks: Frequency Groups 0-9, 10-19, 20-29,……,90-100

Arrays Run-time initialization: Example

Run-time initialization: Example (cont) Frequency Groups

Arrays : Not initialized If an array is not initialized, the elements might have any value. The compiler just uses whatever values were already present at those memory locations

Arrays : Partially initialized 11 If an array is initialized partially, the remaining elements are set to 0.

Non-valid array assignment Array Bounds int doofi[20]; It's your responsibility to make sure the program uses indices only in the range 0 through 19, because the compiler won't check for you.

The compiler doesn't check to see whether the indices are valid. The result of using a bad index is, in the language of the C standard, undefined. So, the program, might seem to work, it might work oddly, or it might abort (Run-time error). Non-valid array assignment Correct indexes Incorrect indexes

Specifying an Array Size wrong correct wrong

Example Write a program to evaluate the following expression The values of x 1, x 2, are read from the terminal

Random numbers generator A random number generator (RNG) is a computational or physical device designed to generate a sequence of numbers or symbols that lack any pattern, i.e. appear random. In C language library provides two function to generate random numbers: rand() return a pseudo-random integer between 0 and RAND_MAX (32767) srand(unsigned int seed) sets seed as the seed for a new sequence of pseudo-random integers to be return by rand();

Rand() rand() return a pseudo-random integer between 0 and RAND_MAX (32767) First run Second run

Seed definition Observation: The results of several runs are identical Explanation: The initial seed used by rand() is identical each time. The seed: Used for the generation of the random numbers. Explicitly specified using the srand function

srand() srand(unsigned int seed) sets seed as the seed for a new sequence of pseudo-random integers to be return by rand(); The sequences can be repeatable by calling srand() with the same seed value. The system time is a good choice as an argument for srand(). It will be different each time the program is run. Thus, results will also be different.

rand() and srand() First run Second run Functions rand() and srand() are defined in. You don’t need to implement them just #include.

Example: Dices with rand() a[ i ] is a histogram and counts how many times a pair of dice rolled i. rand() % 6 produces random numbers in the range 0 to 5, rand() % produces random numbers in the range 1 to 6. First run Second run

Example: Dices with rand() and srand() a[ i ] is a histogram and counts how many times a pair of dice rolled i. rand() % 6 produces random numbers in the range 0 to 5, rand() % produces random numbers in the range 1 to 6. First run Second run

Review questions Identify errors, assuming that ROW and COLUMN are declared as symbolic constants: What happens when an array with a specified size is assigned With values fewer than the specified size; and With values more than the specified size. 23