CSE 830: Design and Theory of Algorithms Dr. Eric Torng.

Slides:



Advertisements
Similar presentations
Razdan with contribution from others 1 Algorithm Analysis What is the Big ‘O Bout? Anshuman Razdan Div of Computing.
Advertisements

Complexity 15-1 Complexity Andrei Bulatov Hierarchy Theorem.
What is an Algorithm? (And how do we analyze one?)
Fall 2006CENG 7071 Algorithm Analysis. Fall 2006CENG 7072 Algorithmic Performance There are two aspects of algorithmic performance: Time Instructions.
CSC401 – Analysis of Algorithms Lecture Notes 1 Introduction
1 ICS 353 Design and Analysis of Algorithms Spring Semester (062) King Fahd University of Petroleum & Minerals Information & Computer Science.
Asymptotic Growth Rate
Analysis of Algorithms intro.  What is “goodness”?  How to measure efficiency? ◦ Profiling, Big-Oh  Big-Oh: ◦ Motivation ◦ Informal examples ◦ Informal.
Introduction to Analysis of Algorithms
Analysis of Algorithms (Chapter 4)
CSE 830: Design and Theory of Algorithms
Analysis of Algorithms1 Estimate the running time Estimate the memory space required. Time and space depend on the input size.
CSE 830: Design and Theory of Algorithms
1 Data Structures A program solves a problem. A program solves a problem. A solution consists of: A solution consists of:  a way to organize the data.
Cmpt-225 Algorithm Efficiency.
CS3381 Des & Anal of Alg ( SemA) City Univ of HK / Dept of CS / Helena Wong 2. Analysis of Algorithms - 1 Analysis.
Asymptotic Analysis Motivation Definitions Common complexity functions
CS Main Questions Given that the computer is the Great Symbol Manipulator, there are three main questions in the field of computer science: What kinds.
What is an Algorithm? (And how do we analyze one?) COMP 122, Spring 04.
Analysis of Algorithms 7/2/2015CS202 - Fundamentals of Computer Science II1.
Analysis of Algorithms COMP171 Fall Analysis of Algorithms / Slide 2 Introduction * What is Algorithm? n a clearly specified set of simple instructions.
Cmpt-225 Simulation. Application: Simulation Simulation  A technique for modeling the behavior of both natural and human-made systems  Goal Generate.
Algorithms. Introduction The methods of algorithm design form one of the core practical technologies of computer science. The main aim of this lecture.
Design and Analysis of Algorithms Chapter Analysis of Algorithms Dr. Ying Lu August 28, 2012
Data Structure & Algorithm Lecture 3 –Algorithm Analysis JJCAO.
Analysis of Algorithms Spring 2015CS202 - Fundamentals of Computer Science II1.
Analysis of Performance
Algorithm Design and Analysis Liao Minghong School of Computer Science and Technology of HIT July, 2003.
Algorithmic Complexity: Complexity Analysis of Time Complexity Complexities Nate the Great.
Program Performance & Asymptotic Notations CSE, POSTECH.
CSC 201 Analysis and Design of Algorithms Lecture 03: Introduction to a CSC 201 Analysis and Design of Algorithms Lecture 03: Introduction to a lgorithms.
Lecture 2 Computational Complexity
Algorithm Efficiency CS 110: Data Structures and Algorithms First Semester,
Mathematics Review and Asymptotic Notation
1 Computer Algorithms Lecture 3 Asymptotic Notation Some of these slides are courtesy of D. Plaisted, UNC and M. Nicolescu, UNR.
Unit III : Introduction To Data Structures and Analysis Of Algorithm 10/8/ Objective : 1.To understand primitive storage structures and types 2.To.
Analysis of Algorithms
Jessie Zhao Course page: 1.
CS 221 Analysis of Algorithms Instructor: Don McLaughlin.
What is an algorithm? Algorithms are the ideas behind computer programs. An algorithm is the thing which stays the same whether the program is in Pascal.
1Computer Sciences Department. Book: Introduction to Algorithms, by: Thomas H. Cormen Charles E. Leiserson Ronald L. Rivest Clifford Stein Electronic:
Program Efficiency & Complexity Analysis. Algorithm Review An algorithm is a definite procedure for solving a problem in finite number of steps Algorithm.
MS 101: Algorithms Instructor Neelima Gupta
Algorithm Analysis CS 400/600 – Data Structures. Algorithm Analysis2 Abstract Data Types Abstract Data Type (ADT): a definition for a data type solely.
CSC – 332 Data Structures Generics Analysis of Algorithms Dr. Curry Guinn.
Prof. Amr Goneid, AUC1 Analysis & Design of Algorithms (CSCE 321) Prof. Amr Goneid Department of Computer Science, AUC Part 1. Complexity Bounds.
1/6/20161 CS 3343: Analysis of Algorithms Lecture 2: Asymptotic Notations.
2IS80 Fundamentals of Informatics Fall 2015 Lecture 5: Algorithms.
E.G.M. PetrakisAlgorithm Analysis1  Algorithms that are equally correct can vary in their utilization of computational resources  time and memory  a.
BITS Pilani Pilani Campus Data Structure and Algorithms Design Dr. Maheswari Karthikeyan Lecture1.
Ch03-Algorithms 1. Algorithms What is an algorithm? An algorithm is a finite set of precise instructions for performing a computation or for solving a.
Analysis of Algorithms Spring 2016CS202 - Fundamentals of Computer Science II1.
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.
GC 211:Data Structures Week 2: Algorithm Analysis Tools Slides are borrowed from Mr. Mohammad Alqahtani.
September 18, Algorithms and Data Structures Lecture II Simonas Šaltenis Aalborg University
Data Structures I (CPCS-204) Week # 2: Algorithm Analysis tools Dr. Omar Batarfi Dr. Yahya Dahab Dr. Imtiaz Khan.
Analysis of Algorithms
GC 211:Data Structures Week 2: Algorithm Analysis Tools
Introduction to Algorithms
Introduction Algorithms Order Analysis of Algorithm
GC 211:Data Structures Algorithm Analysis Tools
Courtsey & Copyright: DESIGN AND ANALYSIS OF ALGORITHMS Courtsey & Copyright:
CS 3343: Analysis of Algorithms
Introduction to Algorithms Analysis
Analysis of Algorithms
Asst. Dr.Surasak Mungsing
Math/CSE 1019N: Discrete Mathematics for Computer Science Winter 2007
Estimating Algorithm Performance
Analysis of Algorithms
Presentation transcript:

CSE 830: Design and Theory of Algorithms Dr. Eric Torng

Outline Definitions –Algorithms –Problems Course Objectives Administrative stuff … Analysis of Algorithms

What is an Algorithm? Algorithms are the ideas behind computer programs. An algorithm is the thing that stays the same whether the program is in C++ running on a Cray in New York or is in BASIC running on a Macintosh in Katmandu! To be interesting, an algorithm has to solve a general, specified problem.

What is a problem? Definition –A mapping/relation between a set of input instances (domain) and an output set (range) Problem Specification –Specify what a typical input instance is –Specify what the output should be in terms of the input instance Example: Sorting –Input: A sequence of N numbers a 1 …a n –Output: the permutation (reordering) of the input sequence such that a 1  a 2  …  a n.

Types of Problems Search: find X in the input satisfying property Y Structuring: Transform input X to satisfy property Y Construction: Build X satisfying Y Optimization: Find the best X satisfying property Y Decision: Does X satisfy Y? Adaptive: Maintain property Y over time.

Two desired properties of algorithms Correctness –Always provides correct output when presented with legal input Efficiency –What does efficiency mean?

Example: Odd Number Input: A number n Output: Yes if n is odd, no if n is even Which of the following algorithms solves Odd Number best? Count up to that number from one and alternate naming each number as odd or even. Factor the number and see if there are any twos in the factorization. Keep a lookup table of all numbers from 0 to the maximum integer. Look at the last bit (or digit) of the number.

Example: TSP Input: A sequence of N cities with the distances d ij between each pair of cities Output: a permutation (ordering) of the cities that minimizes the expression  {j =1 to n-1} d j’,j’+1 + d n’,1’

Possible Algorithm: Nearest neighbor

Not Correct!

A Correct Algorithm We could try all possible orderings of the points, then select the ordering which minimizes the total length: d =  For each of the n! permutations, P i of the n points, if cost(P i ) < d then d = cost(P i ) P min = P i return P min

Outline Definitions –Algorithms –Problems Course Objectives Administrative stuff … Analysis of Algorithms

Course Objectives 1.Learning classic algorithms 2.How to devise correct and efficient algorithms for solving a given problem 3.How to express algorithms 4.How to validate/verify algorithms 5.How to analyze algorithms 6.How to prove (or at least indicate) no correct, efficient algorithm exists for solving a given problem 7.Writing clear algorithms and

Classic Algorithms Lots of wonderful algorithms have already been developed I expect you to learn most of this from reading, though we will reinforce in lecture

How to devise algorithms Something of an art form Cannot be fully automated We will describe some general techniques and try to illustrate when each is appropriate

Expressing Algorithms Implementations Pseudo-code English My main concern here is not the specific language used but the clarity of your expression

Verifying algorithm correctness Proving an algorithm generates correct output for all inputs One technique covered in textbook –Loop invariants We will do some of this in the course, but it is not emphasized as much as other objectives

Analyzing algorithms The “process” of determining how much resources (time, space) are used by a given algorithm We want to be able to make quantitative assessments about the value (goodness) of one algorithm compared to another We want to do this WITHOUT implementing and running an executable version of an algorithm –Question: How can we study the time complexity of an algorithm if we don’t run it or even choose a specific machine to measure it on?

Proving hardness results We believe that no correct and efficient algorithm exists that solves many problems such as TSP We define a formal notion of a problem being hard We develop techniques for proving hardness results

Outline Definitions –Algorithms –Problems Course Objectives Administrative stuff … Analysis of Algorithms

Algorithm Analysis Overview RAM model of computation Concept of input size Three complexity measures –Best-case, average-case, worst-case Asymptotic analysis –Asymptotic notation

The RAM Model RAM model represents a “generic” implementation of the algorithm Each “simple” operation (+, -, =, if, call) takes exactly 1 step. Loops and subroutine calls are not simple operations, but depend upon the size of the data and the contents of a subroutine. We do not want “sort” to be a single step operation. Each memory access takes exactly 1 step.

Input Size In general, larger input instances require more resources to process correctly We standardize by defining a notion of size for an input instance Examples –What is the size of a sorting input instance? –What is the size of an “Odd number” input instance?

Measuring Complexity The running time of an algorithm is the function defined by the number of steps required to solve input instances of size n –F(1) = 3 –F(2) = 5 –F(3) = 7 –…–… –F(n) = 2n+1 What potential problems do we have with the above definition when applied to real algorithms solving real problems?

Case study: Insertion Sort Count the number of times each line will be executed: Num Exec. for i = 2 to n(n-1) + 1 key = A[i] n-1 j = i - 1 n-1 while j > 0 AND A[j] > key ? A[j+1] = A[j] ? j = j -1 ? A[j+1] = key n-1

Measuring Complexity Again The worst case running time of an algorithm is the function defined by the maximum number of steps taken on any instance of size n. The best case running time of an algorithm is the function defined by the minimum number of steps taken on any instance of size n. The average-case running time of an algorithm is the function defined by an average number of steps taken on any instance of size n. Which of these is the best to use?

Average case analysis Drawbacks –Based on a probability distribution of input instances –How do we know if distribution is correct or not? Usually more complicated to compute than worst case running time –Often worst case running time is comparable to average case running time(see next graph) –Counterexamples to above: Quicksort simplex method for linear programming

Best, Worst, and Average Case

Worst case analysis Typically much simpler to compute as we do not need to “average” performance on many inputs –Instead, we need to find and understand an input that causes worst case performance Provides guarantee that is independent of any assumptions about the input Often reasonably close to average case running time The standard analysis performed

Motivation for Asymptotic Analysis An exact computation of worst-case running time can be difficult –Function may have many terms: 4n 2 - 3n log n n - 43 n ⅔ + 75 An exact computation of worst-case running time is unnecessary –Remember that we are already approximating running time by using RAM model

Simplifications Ignore constants –4n 2 - 3n log n n - 43 n ⅔ + 75 becomes –n 2 – n log n + n - n ⅔ + 1 Asymptotic Efficiency –n 2 – n log n + n - n ⅔ + 1 becomes n 2 End Result: Θ(n 2 )

Why ignore constants? RAM model introduces errors in constants –Do all instructions take equal time? –Specific implementation (hardware, code optimizations) can speed up an algorithm by constant factors –We want to understand how effective an algorithm is independent of these factors Simplification of analysis –Much easier to analyze if we focus only on n 2 rather than worrying about 3.7 n 2 or 3.9 n 2

Asymptotic Analysis We focus on the infinite set of large n ignoring small values of n Usually, an algorithm that is asymptotically more efficient will be the best choice for all but very small inputs. 0 infinity

“Big Oh” Notation O(g(n)) = {f(n) : there exists positive constants c and n 0 such that  n≥n 0, 0 ≤ f(n) ≤ c g(n) } –What are the roles of the two constants? n 0 : c:

Set Notation Comment O(g(n)) is a set of functions. However, we will use one-way equalities like n = O(n 2 ) This really means that function n belongs to the set of functions O(n 2 ) Incorrect notation: O(n 2 ) = n Analogy –“A dog is an animal” but not “an animal is a dog”

Three Common Sets f(n) = O(g(n)) means c  g(n) is an Upper Bound on f(n) f(n) =  (g(n)) means c  g(n) is a Lower Bound on f(n) f(n) =  (g(n)) means c 1  g(n) is an Upper Bound on f(n) and c 2  g(n) is a Lower Bound on f(n) These bounds hold for all inputs beyond some threshold n 0.

O(g(n))

 (g(n))

 (g(n))

O(f(n)) and  (g(n))

Example Function f(n) = 3n n + 6

Quick Questions c n 0 3n n + 6 = O(n 2 ) 3n n + 6 = O(n 3 ) 3n n + 6  O(n) 3n n + 6 =  (n 2 ) 3n n + 6   (n 3 ) 3n n + 6 =  (n) 3n n + 6 =  (n 2 )? 3n n + 6 =  (n 3 )? 3n n + 6 =  (n)?

“Little Oh” Notation o(g(n)) = {f(n) :  c >0  n 0 > 0 such that  n ≥ n 0 0 ≤ f(n) < cg(n)} –Intuitively, lim n f(n)/g(n) = 0 –f(n) < c g(n)

Two Other Sets f(n) = o(g(n)) means c  g(n) is a strict upper bound on f(n) f(n) =  (g(n)) means c  g(n) is a strict lower bound on f(n) These bounds hold for all inputs beyond some threshold n 0 where n 0 is now dependent on c.

Common Complexity Functions Complexity n 1  sec 2  sec 3  sec 4  sec 5  sec 6  sec n sec sec sec sec sec sec n sec sec sec sec sec sec n sec 3.2 sec 24.3 sec 1.7 min 5.2 min 13.0 min 2 n 0.001sec 1.0 sec 17.9 min 12.7 days 35.7 years 366 cent 3 n 0.59sec 58 min 6.5 years 3855 cent 2  10 8 cent 1.3  cent log 2 n3  sec 4  sec 5  sec 5  sec 6  sec 6  sec n log 2 n3  sec 9  sec sec sec sec sec

Example Problems 1. What does it mean if: f(n)  O(g(n)) and g(n)  O(f(n)) ??? 2. Is 2 n+1 = O(2 n ) ? Is 2 2n = O(2 n ) ? 3. Does f(n) = O(f(n)) ? 4. If f(n) = O(g(n)) and g(n) = O(h(n)), can we say f(n) = O(h(n)) ?