Lecture 9 CSE 331 Sep 20, 2010.

Slides:



Advertisements
Similar presentations
Lecture 30 CSE 331 Nov 8, HW 7 due today Place Q1, Q2 and Q3 in separate piles I will not accept HWs after 1:15pm DO NOT FORGET TO WRITE DOWN YOUR.
Advertisements

CSC401 – Analysis of Algorithms Lecture Notes 1 Introduction
Lecture 37 CSE 331 Nov 4, Homework stuff (Last!) HW 10 at the end of the lecture Solutions to HW 9 on Monday Graded HW 9 on.
Lecture 16 CSE 331 Oct 9, Announcements Hand in your HW4 Solutions to HW4 next week Remember next week I will not be here so.
Lecture 5 CSE 331 Sep 11, HW 1 out today Will be handed out at the END of the lecture Read the homework policy document carefully START EARLY! ©ehow.com.
Lecture 7 CSE 331 Sep 16, Feedback forms VOLUNTARY Last 5 mins of the lecture.
CS2420: Lecture 4 Vladimir Kulyukin Computer Science Department Utah State University.
Lecture 24 CSE 331 Oct 30, Homework stuff Please turn in your HW 6 Graded HW 5 and HW 7 at the END of the lecture.
Lecture 34 CSE 331 Nov 30, Graded HW 8 On Wednesday.
Lecture 8 CSE 331 Sep 18, Homeworks Hand in your HW 1 HW 2 and solutions to HW 1 out at the end of class Not naming your collaborators is same as.
Lecture 33 CSE 331 Nov 17, Online office hours Alex will host the office hours.
Lecture 8 CSE 331 Sep 17, HW 1 due today Place Q1 and Q2 in separate piles I will not accept HWs after 1:15pm.
Analysis of Performance
Chapter 2.2 Algebraic Functions. Definition of Functions.
Lecture 3 CSE 331. Stable Matching Problem Problem Statement Algorithm Problem Definition Implementation Analysis.
Fundamentals CSE 373 Data Structures Lecture 5. 12/26/03Fundamentals - Lecture 52 Mathematical Background Today, we will review: ›Logs and exponents ›Series.
Growth of Functions. 2 Analysis of Bubble Sort 3 Time Analysis – Best Case The array is already sorted – no swap operations are required.
Asymptotic Analysis CSE 331. Definition of Efficiency An algorithm is efficient if, when implemented, it runs quickly on real instances Implemented where?
Lecture 32 CSE 331 Nov 16, 2016.
Lecture 8 CSE 331 Sep 14, 2011.
Lecture 23 CSE 331 Oct 26, 2016.
Lecture 22 CSE 331 Oct 22, 2010.
Lecture 5 CSE 331 Sep 10, 2010.
Lecture 7 CSE 331 Sep 15, 2010.
Lecture 7 CSE 331 Sep 14, 2016.
Lecture 6 CSE 331 Sep 11, 2017.
Lecture 6 CSE 331 Sep 13, 2010.
Lecture 33 CSE 331 Nov 18, 2016.
Lecture 33 CSE 331 Nov 17, 2017.
Lecture 8 CSE 331 Sep 12, 2014.
Lecture 14 CSE 331 Sep 30, 2011.
Lecture 4 CSE 331 Sep 8, 2010.
Lecture 24 CSE 331 Oct 25, 2013.
Lecture 27 CSE 331 Nov 3, 2017.
Lecture 7 CSE 331 Sep 13, 2017.
Lecture 22 CSE 331 Oct 24, 2016.
Lecture 9 CSE 331 Sep 19, 2012.
Lecture 4 CSE 331 Sep 3, 2014.
Lecture 2 CSE 331 Sep 1, 2011.
Lecture 5 CSE 331 Sep 6, 2013.
Lecture 5 CSE 331 Sep 7, 2012.
CSE 373 Data Structures Lecture 5
Lecture 32 CSE 331 Nov 15, 2017.
Lecture 33 CSE 331 Nov 14, 2014.
Lecture 34 CSE 331 Nov 18, 2011.
Lecture 3 CSE 331 Aug 31, 2012.
Lecture 8 CSE 331 Sep 16, 2016.
Lecture 7 CSE 331 Sep 13, 2011.
Lecture 18 CSE 331 Oct 9, 2017.
Lecture 31 CSE 331 Nov 14, 2012.
Lecture 19 CSE 331 Oct 14, 2011.
Lecture 8 CSE 331 Sep 15, 2017.
Lecture 39 CSE 331 Dec 5, 2011.
Lecture 24 CSE 331 Oct 24, 2014.
Lecture 36 CSE 331 Nov 28, 2011.
Lecture 36 CSE 331 Nov 30, 2012.
Lecture 8 CSE 331 Sep 15, 2011.
Lecture 9 CSE 331 Sep 15, 2014.
Analysis of Algorithms
Lecture 9 CSE 331 Sep 20, 2010.
Lecture 5 CSE 331 Sep 5, 2014.
Lecture 6 CSE 331 Sep 12, 2016.
Lecture 7 CSE 331 Sep 10, 2014.
Lecture 5 CSE 331 Sep 9, 2011.
Lecture 9 CSE 331 Sep 19, 2011.
Lecture 7 CSE 331 Sep 11, 2013.
Lecture 30 CSE 331 Nov 9, 2011.
Lecture 19 CSE 331 Oct 10, 2016.
Lecture 27 CSE 331 Nov 4, 2016.
Lecture 37 CSE 331 Dec 3, 2018.
Presentation transcript:

Lecture 9 CSE 331 Sep 20, 2010

About 2 more to go… I’ll need confirmation in writing. No graded material will be handed back till I get this signed form from you!

Hope you’re following the blog HW clarifications HW grading rubric Nice summaries of the lectures

http://xkcd.com/124/

At most c.Nd steps (c>0, d>0 absolute constants) Definition-III Should scale with input size If N increases by a constant factor, so should the measure Polynomial running time At most c.Nd steps (c>0, d>0 absolute constants) Step: “primitive computational step”

Reading Assignments Sections 1.2, 2.1, 2.2 and 2.4 in [KT]

The actual run times n! 100n2 Asymptotic View n2

Asymptotic Notation ≤ is O with glasses ≥ is Ω with glasses

Run time of an algorithm (Worst-case) run time T(n) for input size n Maximum number of steps taken by the algorithm for any input of size n

Questions?

Today’s agenda Definition of asymptotic notations Properties of asymptotic notations Asymptotic running time Analyzing the running time of the GS algo