13
APS105 Sorting

APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

Embed Size (px)

Citation preview

Page 1: APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

APS105

Sorting

Page 2: APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

Sorting

• Sorting is a commonly needed function– itunes can sort your song library different ways– excel spreadsheet can sort a column of numbers– phone book is sorted by last name

• Many different sorting algorithms– some are simple, some are complex– some are fast, some are slow

• How would you sort this array of ints?

List: 9 5 22 8 5 2 14 3 22 4 7

Page 3: APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

Selection Sort

.

List: 9 5 22 8 5 2

Gif

Page 5: APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

Insertion Sort

.

List: 9 5 22 8 5 2

Gif

Page 6: APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

Code for Insertion Sort.

Dance

Page 7: APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

Bubble Sort

.

List: 9 5 22 8 5 2

Gif

Page 8: APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

Code for Bubble Sort.

Dance

Page 9: APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

Recursive Cake Cutting Sort?

.

List: 9 5 22 8 5 2 14 3 24 4

List:

Page 10: APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

Recursive Cake Cutting Sort?

List: 9 5 22 8 5 2 14 3 24 4

List:

List:

List:

Page 11: APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

Quick Sort (like recursive cake cutting)

.

List: 9 5 22 8 4 3Pivot:

Gif

Page 12: APS105 Sorting. Sorting is a commonly needed function –itunes can sort your song library different ways –excel spreadsheet can sort a column of numbers

Code for Quick Sort.