Processing math: 100%

6.Sorting§

Insertion Sort

1 / 11 Settings
<<<>>>

Insertion Sort starts with the record in position 1.

  1. 200
  2. 101
  3. 152
  4. 543
  5. 554
  6. 115
  7. 786
  8. 147
Proficient Saving... Error Saving
Server Error
Resubmit

Analysis: Worst Case

1 / 24 Settings
<<<>>>

We first examine the worst case cost.

Created with Raphaël 2.1.2
Proficient Saving... Error Saving
Server Error
Resubmit

Analysis: Best Case

1 / 5 Settings
<<<>>>

Now we will consider the best case cost.

Created with Raphaël 2.1.2
Proficient Saving... Error Saving
Server Error
Resubmit

Analysis: Average Case

1 / 8 Settings
<<<>>>

Finally, consider the average case cost.

Created with Raphaël 2.1.2
Proficient Saving... Error Saving
Server Error
Resubmit

Bubble Sort

1 / 13 Settings
<<<>>>

Moving from left to right, compare adjacent elements and swap if the left one is bigger than the right one.

  1. 200
  2. 101
  3. 152
  4. 543
  5. 554
  6. 115
  7. 786
  8. 147
Proficient Saving... Error Saving
Server Error
Resubmit

1 / 10 Settings
<<<>>>

Moving from left to right, compare adjacent elements and swap if the left one is bigger than the right one.

  1. 100
  2. 151
  3. 202
  4. 543
  5. 114
  6. 555
  7. 146
  8. 787
Proficient Saving... Error Saving
Server Error
Resubmit

Analysis

1 / 24 Settings
<<<>>>

What is the cost of Bubblesort?

Created with Raphaël 2.1.2
Proficient Saving... Error Saving
Server Error
Resubmit

Selection Sort

1 / 15 Settings
<<<>>>

Moving from left to right, find the element with the greatest value.

  1. 200
  2. 101
  3. 152
  4. 543
  5. 554
  6. 115
  7. 786
  8. 147
Proficient Saving... Error Saving
Server Error
Resubmit

1 / 13 Settings
<<<>>>

Second pass: moving from left to right, find the element with the second greatest value.

  1. 200
  2. 101
  3. 152
  4. 543
  5. 554
  6. 115
  7. 146
  8. 787
Proficient Saving... Error Saving
Server Error
Resubmit

Analysis

1 / 40 Settings
<<<>>>

What is the cost for Selection Sort?

Created with Raphaël 2.1.2
Proficient Saving... Error Saving
Server Error
Resubmit

Summary

InsertionBubbleSelectionComparisons:Best CaseΘ(n)Θ(n2)Θ(n2)Average CaseΘ(n2)Θ(n2)Θ(n2)Worst CaseΘ(n2)Θ(n2)Θ(n2)Swaps:Best Case00Θ(n)Average CaseΘ(n2)Θ(n2)Θ(n)Worst CaseΘ(n2)Θ(n2)Θ(n)

Code Tuning

Exchange Sorting

1 / 16 Settings
<<<>>>

What is the average number of inversions?

Proficient Saving... Error Saving
Server Error
Resubmit