Chapter 8. Statement-Level Control Structures ISBN

Similar documents
Chapter 8. Statement-Level Control Structures

Chapter 8. Statement-Level Control Structures

Iterative Statements. Iterative Statements: Examples. Counter-Controlled Loops. ICOM 4036 Programming Languages Statement-Level Control Structure

Chapter 8. Statement-Level Control Structures

Chapter 8 Statement-Level Control Structures

Statement level control structures

Chapter 7. - FORTRAN I control statements were based directly on IBM 704 hardware

Relational Expressions. Boolean Expressions. Boolean Expressions. ICOM 4036 Programming Languages. Boolean Expressions

Control Structures. Outline. In Text: Chapter 8. Control structures Selection. Iteration. Gotos Guarded statements. One-way Two-way Multi-way

Chapter 8 Statement-Level Control Structure

CPSC 3740 Programming Languages University of Lethbridge. Control Structures

Ch. 7: Control Structures

9/21/17. Outline. Expression Evaluation and Control Flow. Arithmetic Expressions. Operators. Operators. Notation & Placement

Statement-Level Control Structures

Statement-Level Control Structures

CSE 452: Programming Languages. Outline of Today s Lecture. Expressions. Expressions and Control Flow

Flow of Control Execution Sequence

LECTURE 18. Control Flow

Computer Programming I - Unit 5 Lecture page 1 of 14

G Programming Languages - Fall 2012

Programming Languages Third Edition. Chapter 9 Control I Expressions and Statements

Expressions vs statements

Introduction Primitive Data Types Character String Types User-Defined Ordinal Types Array Types. Record Types. Pointer and Reference Types

Flow Control. CSC215 Lecture

Chapter 7 Control I Expressions and Statements

Expressions and Statements. Department of CSE, MIT, Manipal

4.1. Chapter 4: Simple Program Scheme. Simple Program Scheme. Relational Operators. So far our programs follow a simple scheme

Principles of Programming Languages Lecture 22

Chapter 7. Expressions and Assignment Statements

Chapter 6 part 1. Data Types. (updated based on 11th edition) ISBN

Chapter 7. Expressions and Assignment Statements ISBN

COP4020 Programming Languages. Control Flow Prof. Robert van Engelen

Introduction. C provides two styles of flow control:

The SPL Programming Language Reference Manual

C++ Programming: From Problem Analysis to Program Design, Fourth Edition. Chapter 5: Control Structures II (Repetition)

Chapter 2: Functions and Control Structures

C++ Programming: From Problem Analysis to Program Design, Third Edition

REPETITION CONTROL STRUCTURE LOGO

Structure of Programming Languages Lecture 5

Chapter 7. Expressions and Assignment Statements ISBN

Programming for Engineers Iteration

Chapter 7. Expressions and Assignment Statements

Ordering Within Expressions. Control Flow. Side-effects. Side-effects. Order of Evaluation. Misbehaving Floating-Point Numbers.

Chapter 6 Control Flow. June 9, 2015

Control Flow COMS W4115. Prof. Stephen A. Edwards Fall 2006 Columbia University Department of Computer Science

CSC 326H1F, Fall Programming Languages. What languages do you know? Instructor: Ali Juma. A survey of counted loops: FORTRAN

Chapter 7. Expressions and Assignment Statements (updated edition 11) ISBN

Expressions and Assignment Statements

Software II: Principles of Programming Languages. Why Expressions?

Flow Control: Branches and loops

Chapter 5: Control Structures II (Repetition) Objectives (cont d.) Objectives. while Looping (Repetition) Structure. Why Is Repetition Needed?

Lexical Considerations

Software Engineering using Formal Methods

1 Lexical Considerations

Loops! Loops! Loops! Lecture 5 COP 3014 Fall September 25, 2017

Chapter 6. Data Types ISBN

C-LANGUAGE CURRICULAM

Chapter 5. Names, Bindings, and Scopes

UNIT 3

Chapter 4: Making Decisions

Chapter 4: Making Decisions

Software Engineering using Formal Methods

Chapter 6. Data Types ISBN

Week 2. Relational Operators. Block or compound statement. if/else. Branching & Looping. Gaddis: Chapters 4 & 5. CS 5301 Spring 2018.

5. Control Statements

CS 112 Introduction to Computing II. Wayne Snyder Computer Science Department Boston University

Lexical Considerations

Introduction to C/C++ Lecture 3 - Program Flow Control

An Introduction to Programming with C++ Sixth Edition. Chapter 7 The Repetition Structure

Applications of Formal Verification

Ruby: Introduction, Basics

Chapter 9. Subprograms

The PCAT Programming Language Reference Manual

Programming Languages, Summary CSC419; Odelia Schwartz

Formal Specification and Verification

Control Structures. Lecture 4 COP 3014 Fall September 18, 2017

CS1622. Semantic Analysis. The Compiler So Far. Lecture 15 Semantic Analysis. How to build symbol tables How to use them to find

STATS 507 Data Analysis in Python. Lecture 2: Functions, Conditionals, Recursion and Iteration

Lecture 7 Tao Wang 1

Java Programming: Guided Learning with Early Objects Chapter 5 Control Structures II: Repetition

Repetition Structures

Condition-Controlled Loop. Condition-Controlled Loop. If Statement. Various Forms. Conditional-Controlled Loop. Loop Caution.

Loops and Files. Chapter 04 MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz

int foo() { x += 5; return x; } int a = foo() + x + foo(); Side-effects GCC sets a=25. int x = 0; int foo() { x += 5; return x; }

15.1 Origins and Uses of Ruby

PLD Semester Exam Study Guide Dec. 2018

Chapter 6. Data Types

Programming Basics and Practice GEDB029 Decision Making, Branching and Looping. Prof. Dr. Mannan Saeed Muhammad bit.ly/gedb029

Theory of control structures

Islamic University of Gaza Computer Engineering Dept. C++ Programming. For Industrial And Electrical Engineering By Instructor: Ruba A.

Expressions & Assignment Statements

5 The Control Structure Diagram (CSD)

Conditionals and Recursion. Python Part 4

Applications of Formal Verification

\n is used in a string to indicate the newline character. An expression produces data. The simplest expression

Applications of Formal Verification

LESSON 3. In this lesson you will learn about the conditional and looping constructs that allow you to control the flow of a PHP script.

Loops and Conditionals. HORT Lecture 11 Instructor: Kranthi Varala

Control, Quick Overview. Selection. Selection 7/6/2017. Chapter 2. Control

GNU ccscript Scripting Guide IV

Transcription:

Chapter 8 Statement-Level Control Structures ISBN 0-321-49362-1

Chapter 8 Topics Introduction Selection Statements Iterative Statements Unconditional Branching Guarded Commands Conclusions Copyright 2012 Addison-Wesley. All rights reserved. 1-2

Levels of Control Flow Within expressions (Chapter 7) (operator associativity and precedence rules) Among program units (Chapter 9) (functions/subroutines/procedures) Among program statements (this chapter) (selection/iteration) Copyright 2012 Addison-Wesley. All rights reserved. 1-3

Control Statements: Evolution Much research and argument in the 1960s about the issue One important result: It was proven that all algorithms represented by flowcharts can be coded with only two-way selection and pretest logical loops Copyright 2012 Addison-Wesley. All rights reserved. 1-4

Control Structure A control structure is a control statement and the statements whose execution it controls Design question Should a control structure have multiple entries? Copyright 2012 Addison-Wesley. All rights reserved. 1-5

Selection Statements A selection statement provides the means of choosing between two or more paths of execution Two general categories: Two-way selectors Multiple-way selectors Copyright 2012 Addison-Wesley. All rights reserved. 1-6

Two-Way Selection Statements General form: if control_expression then clause else clause Design Issues: What is the form and type of the control expression? How are the then and else clauses specified? How should the meaning of nested selectors be specified? Copyright 2012 Addison-Wesley. All rights reserved. 1-7

The Control Expression If the then reserved word or some other syntactic marker is not used to introduce the then clause, the control expression is placed in parentheses In C89, C99, Python, and C++, the control expression can be arithmetic In languages such as Ada, Java, Ruby, and C#, the control expression must be Boolean Copyright 2012 Addison-Wesley. All rights reserved. 1-8

Clause Form In many contemporary languages, the then and else clauses can be single statements or compound statements In Perl, all clauses must be delimited by braces (they must be compound) In Fortran 95, Ada, and Ruby, clauses are statement sequences Python uses indentation to define clauses if x > y : x = y print "case 1" Copyright 2012 Addison-Wesley. All rights reserved. 1-9

Nesting Selectors Java example if (sum == 0) if (count == 0) result = 0; else result = 1; Which if gets the else? Java's static semantics rule: else matches with the nearest if Copyright 2012 Addison-Wesley. All rights reserved. 1-10

Nesting Selectors (continued) To force an alternative semantics, compound statements may be used: if (sum == 0) { } if (count == 0) result = 0; else result = 1; The above solution is used in C, C++, and C# Perl requires that all then and else clauses to be compound Copyright 2012 Addison-Wesley. All rights reserved. 1-11

Nesting Selectors (continued) Statement sequences as clauses: Ruby if sum == 0 then if count == 0 then result = 0 else result = 1 end end Copyright 2012 Addison-Wesley. All rights reserved. 1-12

Nesting Selectors (continued) Python if sum == 0 : if count == 0 : result = 0 else : result = 1 Copyright 2012 Addison-Wesley. All rights reserved. 1-13

Multiple-Way Selection Statements Allow the selection of one of any number of statements or statement groups Design Issues: 1. What is the form and type of the control expression? 2. How are the selectable segments specified? 3. Is execution flow through the structure restricted to include just a single selectable segment? 4. How are case values specified? 5. What is done about unrepresented expression values? Copyright 2012 Addison-Wesley. All rights reserved. 1-14

Multiple-Way Selection: Examples C, C++, and Java switch (expression) { case const_expr_1: stmt_1; case const_expr_n: stmt_n; [default: stmt_n+1] } Copyright 2012 Addison-Wesley. All rights reserved. 1-15

Multiple-Way Selection: Examples Design choices for C s switch statement 1. Control expression can be some ordinal type 2. Selectable segments can be statement sequences, blocks, or compound statements 3. Any number of segments can be executed in one execution of the construct (there is no implicit branch at the end of selectable segments) 4. default clause is for unrepresented values (if there is no default, the whole statement does nothing) Copyright 2012 Addison-Wesley. All rights reserved. 1-16

Multiple-Way Selection: Examples C# Differs from C in that it has a static semantics rule that disallows the implicit execution of more than one segment Each selectable segment must end with an unconditional branch (goto or break) Also, in C# the control expression and the case constants can be strings Copyright 2012 Addison-Wesley. All rights reserved. 1-17

Multiple-Way Selection: Examples Ruby has two forms of case statements 1. One form uses when conditions (Bool exprs.) leap = case when year % 400 == 0 then true when year % 100 == 0 then false else year % 4 == 0 end 2. The other uses a case value and when values case in_val when -1 then neg_count++ when 0 then zero_count++ when 1 then pos_count++ else puts "Error in_val is out of range" end Copyright 2012 Addison-Wesley. All rights reserved. 1-18

Multiple-Way Selection Using if Multiple Selectors can appear as direct extensions to two-way selectors, using else-if clauses, for example in Python: if count < 10 : bag1 = True elif count < 100 : bag2 = True elif count < 1000 : bag3 = True Copyright 2012 Addison-Wesley. All rights reserved. 1-19

Multiple-Way Selection Using if The Python example can be written as a Ruby case case end when count < 10 then bag1 = true when count < 100 then bag2 = true when count < 1000 then bag3 = true Copyright 2012 Addison-Wesley. All rights reserved. 1-20

Iterative Statements The repeated execution of a statement or compound statement is accomplished either by iteration or recursion General design issues for iteration control statements: 1. How is iteration controlled? 2. Where is the control mechanism in the loop? Copyright 2012 Addison-Wesley. All rights reserved. 1-21

Counter-Controlled Loops A counting iterative statement has a loop variable, and a means of specifying the initial and terminal, and stepsize values Design Issues: 1. What are the type and scope of the loop variable? 2. Should it be legal for the loop variable or loop parameters to be changed in the loop body, and if so, does the change affect loop control? 3. Should the loop parameters be evaluated only once, or once for every iteration? Copyright 2012 Addison-Wesley. All rights reserved. 1-22

Iterative Statements: Examples Ada for var in [reverse] discrete_range loop... end loop Design choices: - Type of the loop variable is that of the discrete range (A discrete range is a sub-range of an integer or enumeration type). - Loop variable does not exist outside the loop - The loop variable cannot be changed in the loop, but the discrete range can; it does not affect loop control - The discrete range is evaluated just once Cannot branch into the loop body Copyright 2012 Addison-Wesley. All rights reserved. 1-23

Iterative Statements: Examples C-based languages for ([expr_1] ; [expr_2] ; [expr_3]) statement - The expressions can be whole statements, or even statement sequences, with the statements separated by commas The value of a multiple-statement expression is the value of the last statement in the expression If the second expression is absent, it is an infinite loop Design choices: - There is no explicit loop variable - Everything can be changed in the loop - The first expression is evaluated once, but the other two are evaluated with each iteration - Can branch into the loop. Copyright 2012 Addison-Wesley. All rights reserved. 1-24

Iterative Statements: Examples C++ differs from C in two ways: 1. The control expression can also be Boolean 2. The initial expression can include variable definitions (scope is from the definition to the end of the loop body) Java and C# Differs from C++ in that the control expression must be Boolean Copyright 2012 Addison-Wesley. All rights reserved. 1-25

Iterative Statements: Examples Python for loop_variable in object: - loop body [else: - else clause] for count in [2,4,6] : print count The object is often a range, which is either a list of values in brackets ([2, 4, 6]), or a call to the range function (range(5), which returns 0, 1, 2, 3, 4 The loop variable takes on the values specified in the given range, one for each iteration The else clause, which is optional, is executed if the loop terminates normally Copyright 2012 Addison-Wesley. All rights reserved. 1-26

Iterative Statements: Logically- Controlled Loops Repetition control is based on a Boolean expression (instead of a counter) Design issues: Pretest or posttest? Should the logically controlled loop be a special case of the counting loop statement or a separate statement? Copyright 2012 Addison-Wesley. All rights reserved. 1-27

Iterative Statements: Logically- Controlled Loops: Examples C and C++ have both pretest and posttest forms, in which the control expression can be arithmetic: while (ctrl_expr) loop body do loop body while (ctrl_expr) Java is like C and C++, except the control expression must be Boolean (and the body can only be entered at the beginning -- Java has no goto Copyright 2012 Addison-Wesley. All rights reserved. 1-28

Iterative Statements: Logically- Controlled Loops: Examples Ada has a pretest version, but no posttest Perl and Ruby have two pretest logical loops, while and until. Perl also has two posttest loops Copyright 2012 Addison-Wesley. All rights reserved. 1-29

Iterative Statements: User-Located Loop Control Mechanisms Sometimes it is convenient for the programmers to decide a location for loop control (other than top or bottom of the loop) Simple design for single loops. An infinite loop that includes user-located loop exit. (e.g., break) Design issues for nested loops 1. Should the conditional be part of the exit? 2. Should control be transferable out of more than one loop? Copyright 2012 Addison-Wesley. All rights reserved. 1-30

Iterative Statements: User-Located Loop Control Mechanisms break and continue C, C++, Python, Ruby, and C# have unconditional unlabeled exits (break) Java and Perl have unconditional labeled exits (break in Java, last in Perl) C, C++, and Python have an unlabeled control statement, continue, that skips the remainder of the current iteration, but does not exit the loop Java and Perl have labeled versions of continue Copyright 2012 Addison-Wesley. All rights reserved. 1-31

Iterative Statements: Iteration Based on Data Structures Number of elements in a data structure control loop iteration Control mechanism is a call to an iterator function that returns the next element in some chosen order, if there is one; else loop is terminate C's for can be used to build (simulate) a user-defined iterator: for (p=root; p!=null; traverse(p)){ } Copyright 2012 Addison-Wesley. All rights reserved. 1-32

Iterative Statements: Iteration Based on Data Structures (continued) PHP - current points at one element of the array - next moves current to the next element - reset moves current to the first element Java - For any collection that implements the Iterator interface - next moves the pointer into the collection - hasnext is a predicate - remove deletes an element Perl has a built-in iterator for arrays and hashes, foreach Copyright 2012 Addison-Wesley. All rights reserved. 1-33

Iterative Statements: Iteration Based on Data Structures (Java Example) ArrayList arraylist = new ArrayList(); arraylist.add("1"); arraylist.add("2"); arraylist.add("3"); arraylist.add("4"); //get an Iterator object Iterator itr = arraylist.iterator(); // use hasnext() and next() methods of Iterator // to iterate through the elements while(itr.hasnext()) } System.out.println(itr.next()); Copyright 2012 Addison-Wesley. All rights reserved. 1-34

Iterative Statements: Iteration Based on Data Structures (continued) Java 5.0 (uses for, although it is called foreach) - For arrays and any other class that implements Iterable interface, e.g., ArrayList for (String myelement : mylist) { } Example ArrayList<String> alist = new ArrayList(); alist.add("aa"); alist.add("bb"); alist.add("cc"); alist.add("dd"); alist.add("ff"); for (String s : alist) if (s.equals("aa")) AAcount++; Copyright 2012 Addison-Wesley. All rights reserved. 1-35

Iterative Statements: Iteration Based on Data Structures (continued) C# s foreach statement iterates on the elements of arrays and other collections: Strings[] = strlist = {"Bob", "Carol", "Ted"}; foreach (Strings name in strlist) Console.WriteLine ("Name: {0}", name); Use a generic library List<String> names = new List<String>(); names.add("bob"); names.add("carol"); names.add("ted"); foreach (Strings name in names) Console.WriteLine ("Name: {0}", name); - The notation {0} indicates the position in the string to be displayed Copyright 2012 Addison-Wesley. All rights reserved. 1-36

Unconditional Branching Transfers execution control to a specified place in the program Represented one of the most heated debates in 1960 s and 1970 s Major concern: Readability Some languages do not support goto statement (e.g., Java) C# offers goto statement (can be used in switch statements) Loop exit statements are restricted and somewhat camouflaged goto s Copyright 2012 Addison-Wesley. All rights reserved. 1-37

Guarded Commands Designed by Dijkstra Purpose: to support a new programming methodology that supported verification (correctness) during development Basis for two linguistic mechanisms for concurrent programming (in CSP and Ada) Basic Idea: if the order of evaluation is not important, the program should not specify one Copyright 2012 Addison-Wesley. All rights reserved. 1-38

Selection Guarded Command Form if <Boolean exp> -> <statement> [] <Boolean exp> -> <statement>... [] <Boolean exp> -> <statement> fi Semantics: when construct is reached, Evaluate all Boolean expressions If more than one are true, choose one nondeterministically If none are true, it is a runtime error Copyright 2012 Addison-Wesley. All rights reserved. 1-39

Loop Guarded Command Form do <Boolean> -> <statement> [] <Boolean> -> <statement>... [] <Boolean> -> <statement> od Semantics: for each iteration Evaluate all Boolean expressions If more than one are true, choose one nondeterministically; then start loop again If none are true, exit loop Copyright 2012 Addison-Wesley. All rights reserved. 1-40

Loop Guarded Command (Example) Given four integer variables, q1, q2, q3, and q4, rearrange the values of the four so that q1 <= q2 <= q3 <= q4. do q1 > q2 -> temp := q1; q1 := q2; q2 := temp; [] q2 > q3 -> temp := q2; q2 := q3; q3 := temp; [] q3 > q4 -> temp := q3; q3 := q4; q4 := temp; od Copyright 2012 Addison-Wesley. All rights reserved. 1-41

Conclusion Variety of statement-level structures Choice of control statements beyond selection and logical pretest loops is a trade-off between language size and writability Functional and logic programming languages are quite different control structures Copyright 2012 Addison-Wesley. All rights reserved. 1-43