Please enable JavaScript to use CodeHS

AP Computer Science A (Mocha)

Lesson 8.5 Insertion Sort

Description

Student learn a new sorting method, Insertion Sort. As learned in the previous lesson, Binary Search is a useful search method, but it’s limited by the fact that the lists it searches need to be sorted. In this lesson, students learn that Insertion Sort is another way they can sort lists in order to effectively use Binary Search.


Objective

Students will be able to:

  • Define and use the Insertion Sort method
  • Understand the strengths and limitations of Insertion Sort