Learning Objectives Explain similarities and differences among algorithms, programs, and heuristic solutions List the five essential properties of an algorithm.

Slides:



Advertisements
Similar presentations
Chapter 11: Models of Computation
Advertisements

College of Information Technology & Design
MATH 224 – Discrete Mathematics
CHAPTER 2 GC101 Program’s algorithm 1. COMMUNICATING WITH A COMPUTER  Programming languages bridge the gap between human thought processes and computer.
1 CS101 Introduction to Computing Lecture 17 Algorithms II.
Chapter 1 An Overview of Computers and Programming Languages.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Algorithmic Thinking What’s the Plan? lawrence snyder c h a p t e r 10.
Chapter 10 Algorithmic Thinking. Copyright © 2013 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Learning Objectives List the five essential.
Chapter 10 What's The Plan?: Algorithmic Thinking.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Introduction to Computers CS Dr. Zhizhang Shen Chapter 10: How to.
© Janice Regan, CMPT 102, Sept CMPT 102 Introduction to Scientific Computer Programming The software development method algorithms.
1 Introduction to Computability Theory Lecture12: Decidable Languages Prof. Amos Israeli.
Scott Grissom, copyright 2004 Chapter 5 Slide 1 Analysis of Algorithms (Ch 5) Chapter 5 focuses on: algorithm analysis searching algorithms sorting algorithms.
Algorithms and Problem Solving-1 Algorithms and Problem Solving.
CSE115/ENGR160 Discrete Mathematics 03/03/11 Ming-Hsuan Yang UC Merced 1.
Chapter 2: Algorithm Discovery and Design
 2007 Pearson Education, Inc. All rights reserved Introduction to C Programming.
1. By the end of this lecture you should be able … To describe in general terms how computers function To describe the fetch-execute cycle To explain.
Introduction to C Programming
CHAPTER 10 Recursion. 2 Recursive Thinking Recursion is a programming technique in which a method can call itself to solve a problem A recursive definition.
Design and Analysis of Algorithms
Fundamentals of Python: From First Programs Through Data Structures
February 17, 2015Applied Discrete Mathematics Week 3: Algorithms 1 Double Summations Table 2 in 4 th Edition: Section th Edition: Section th.
DCT 1123 PROBLEM SOLVING & ALGORITHMS INTRODUCTION TO PROGRAMMING.
HOW TO SOLVE IT? Algorithms. An Algorithm An algorithm is any well-defined (computational) procedure that takes some value, or set of values, as input.
Fundamentals of Python: First Programs
© Janice Regan, CMPT 128, Jan CMPT 128 Introduction to Computing Science for Engineering Students Creating a program.
Invitation to Computer Science, Java Version, Second Edition.
Fundamentals of Algorithms MCS - 2 Lecture # 1
Some quotes…. I really hate this damned machine I wish that they would sell it. It never does quite what I want But only what I tell it. ~Anon These machines.
CSIS 123A Lecture 9 Recursion Glenn Stevenson CSIS 113A MSJC.
Algorithms CS139 – Aug 30, Problem Solving Your roommate, who is taking CS139, is in a panic. He is worried that he might lose his financial aid.
Algorithms Algorithms are a familiar idea. Our goal is to learn to specify them right so someone or something else does the work.
1 Section 2.1 Algorithms. 2 Algorithm A finite set of precise instructions for performing a computation or for solving a problem.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Fluency with Information Technology Third Edition by Lawrence Snyder Chapter.
CS221 Algorithm Basics. What is an algorithm? An algorithm is a list of instructions that transform input information into a desired output. Each instruction.
What's The Plan? Algorithmic Thinking Step-by-step directions for whatever someone, or the computer, needs to do © 2004 Lawrence Snyder.
Algorithms & FlowchartsLecture 10. Algorithm’s CONCEPT.
Submitted To: Rutvi sarang Submitted By: Kushal Bhagat.
© 2006 Pearson Addison-Wesley. All rights reserved 2-1 Chapter 2 Principles of Programming & Software Engineering.
ALGORITHMS.
Chapter 10 Algorithmic Thinking. Learning Objectives Explain similarities and differences among algorithms, programs, and heuristic solutions List the.
Algorithms CS280 – 10/20/05. Announcement  Part 1 of project 2 due.  Read chapters 10, 7 for this unit  Tuesday we will also be in the classroom We.
8.1 8 Algorithms Foundations of Computer Science  Cengage Learning.
Chapter 1. The Role of the Algorithms in Computer.
INVITATION TO Computer Science 1 11 Chapter 2 The Algorithmic Foundations of Computer Science.
ALGORITHMS AND FLOWCHARTS. Why Algorithm is needed? 2 Computer Program ? Set of instructions to perform some specific task Is Program itself a Software.
Lecture #1: Introduction to Algorithms and Problem Solving Dr. Hmood Al-Dossari King Saud University Department of Computer Science 6 February 2012.
Lawrence Snyder University of Washington, Seattle © Lawrence Snyder 2004.
Chapter 3 Chapter Summary  Algorithms o Example Algorithms searching for an element in a list sorting a list so its elements are in some prescribed.
Computer Systems Architecture Edited by Original lecture by Ian Sunley Areas: Computer users Basic topics What is a computer?
Introduction to Algorithms
Algorithm Analysis CSE 2011 Winter September 2018.
Unit# 9: Computer Program Development
Algorithms Chapter 3 With Question/Answer Animations
Creativity in Algorithms
Objective of This Course
Algorithm Discovery and Design
CSCI 1250 Information Technologies
Algorithms.
Understanding Problems and how to Solve them by using Computers
Chapter 10: Algorithm TECH Prof. Jeff Cheng.
Introduction to Algorithms
What's The Plan?: Algorithmic Thinking
What's The Plan?: Algorithmic Thinking
What's The Plan?: Algorithmic Thinking
WJEC GCSE Computer Science
Presentation transcript:

Learning Objectives Explain similarities and differences among algorithms, programs, and heuristic solutions List the five essential properties of an algorithm Use the Intersect Alphabetized List algorithm to do the following: Follow the flow of the instruction execution Follow an analysis to pinpoint assumptions Demonstrate algorithmic thinking by being able to do the following: Explain the importance of alphabetical order on the solution Explain the importance of the barrier abstraction for correctness

Important points about Algorithms algorithm: a precise, systematic method for producing a specified result Everyone uses and invents algorithms all the time to solve problems The agent running the algorithm does not need to be a computer There are better and worse versions of many algorithms

Programs are Algorithms programs: algorithms that have been specialized to a specific set of conditions and assumptions usually written in a specific programming language usually the words program and algorithm are used interchangeably

Algorithms we have learned Placeholder technique protect “good” letter sequences by replacing them with a placeholder edit the “bad” letter sequences restore the “good” letter sequences Binary to Decimal Conversion if there is a 1, write down the place value for its position in decimal add up those place values Binary Addition add as in decimal but limit digit positions to less than two

Algorithms vs. Heuristic Processes not all processes given in the book are algorithms the process to find information on the web using a search engine was not an algorithm not systematic not guaranteed to find it (process could fail) called a heuristic process: helpful procedure for finding a result

Algorithm Properties An algorithm must have five properties: Input specified Output specified Definiteness Effectiveness Finiteness

1. Input Specified The input is the data to be transformed during the computation to produce the output What data do you need to begin to get the result you want? Input precision requires that you know what kind of data, how much and what form the data should be

2. Output Specified The output is the data resulting from the computation (your intended result) Frequently the name of the algorithm contains the output: “Algorithm to compute batting average” Output precision also requires that you know what kind of data, how much and what form the output should be (or even if there will be any output at all!)

3. Definiteness Algorithms must specify every step and the order the steps must be taken in the process Definiteness means specifying the sequence of operations for turning input into output Details of each step must be spelled out (including how to handle errors)

4. Effectiveness For an algorithm to be effective, all of its steps must be doable

5. Finiteness The algorithm must stop, eventually! Stopping may mean that you get the expected output OR you get a response that no solution is possible Finiteness is not usually an issue for noncomputer algorithms Computer algorithms often repeat instructions with different data and finiteness may be a problem

Query Evaluation makes an ordered list of the pages after a search query not written in a programming language, instead just everyday English does use “tech speak” program would be too detailed to explain to people how it works

Algorithm Fact #1 Algorithms can be specified at different levels of detail Algorithms use functions to simplify the algorithmic description These functions (such as scan) may have their own algorithms associated with them

Algorithm Fact #2 Algorithms always build on functionality previously defined and known to the user Assume the use familiar functions and algorithms For example, how might scan be defined? Would it be consistent for everyone? Could it mean alphabetize? Look for similar formats? Are these the same?

Algorithm Fact #3 Different algorithms can solve the same problem differently, and the different solutions can take different amounts of time (or space)

How Do We Know it Works? Algorithm solution is clear and simple and efficient Then, how do we know it works? If there is no loop, the program runs, gets to an end, and we can check the result What if there is a loop? Programs with loops cannot be absolutely verified that it works…there are too many possible cases

Then, what? The way to know that an algorithm works is to know why it works… Strategy for knowing why it works: Find one or more properties that ensure the algorithm works Explain, using the program, why they make it work.

Correctness anyone who creates an algorithm needs to know why it works finding the algorithm's correctness-preserving properties and explaining why they do the job

Selection Sort Search entire list looking for smallest item and swap it into its correct position. Search remaining list for next smallest item and swap it into the second position. Continue searching for next smallest item swapping it into its correct position until n-1 items have been swapped. The nth item will now be in its correct position.

Selection Sort Initial configuration: 7 3 9 8 1 6 4 5 Step #1: 1 3 9 8 7 6 4 5 Step #2: 1 3 9 8 7 6 4 5 Step #3: 1 3 4 8 7 6 9 5 Step #4: 1 3 4 5 7 6 9 8 Step #5: 1 3 4 5 6 7 9 8 Step #6: 1 3 4 5 6 7 9 8 Step #7: 1 3 4 5 6 7 8 9

Summary We use algorithms daily, and we continually create them as we instruct other people in how to do something Everyday algorithms can be sometimes be unclear because natural language is imprecise Algorithms have five fundamental properties

Summary Algorithms can be given at different levels of detail depending on the abilities of the agent Problems can be solved by different algorithms in different ways Algorithms always work—either they give the answer, or say no answer is possible— and they are evaluated on their use of resources such as space and time

Summary Intersect Alphabetized Lists algorithm is used in Web search, and is preferred over other solutions Two properties of the Intersect Alphabetized Lists algorithm tell us why it works: the Alpha-Ordering and Barrier properties