Topics:
- Best, worst, and average cases for algorithm performance
- Asymptotic analysis
- Upper and Lower Bounds
- Big O, Big Omega, and Big Theta notation
- Determining the running time of an algorithm
Learning Objectives:
- Understand and be able to apply basic concepts of Asymptotic analysis
- Recognize the cost /benefit tradeoffs that are inherent in the design of algorithms and the role of Asymptotic analysis to understand those characteristics in specific algorithms and data structures
- Be able to determine the best, worst, and average case performance of a particular algorithm and be able to identify and articulate for any algorithm
- The upper bound in Big O (O) notation for the algorithm
- The lower bound in Big Omega (Ω) notation for the algorithm
- The notation used when the upper and lower bounds are the same which is the Big Theta (Θ) notation for the algorithm
- Recognize and be able to apply the simplifying rules outlined in section 3.4.4 of the Shaffer text.
Resources
In this, I used these external resources for reading and learning about Algorithm Analysis:
- Khan academy: https://www.khanacademy.org/computing/computer-science/algorithms#asymptotic-notation
- It was very helpful
- https://www.youtube.com/watch?v=6Ol2JbwoJp0
- The only video that shows the real difference between Big-Oh/Omega/Theta
- Consider the author's website: https://xoax.net/comp_sci/crs/algorithms/index.php
- Consider this video from Ben Awad https://www.youtube.com/watch?v=uHjPTUpQOAk
- PennX SD3xAlgorithm Design and Analysis: https://learning.edx.org/course/course-v1:PennX+SD3x+3T2020/home
- Formal/Academic
- Gives a good introduction
- https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-006-introduction-to-algorithms-spring-2020/
- Good, but not comprehensive. This course assumes a powerful math background for students.