-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
24 lines (17 loc) · 656 Bytes
/
Copy pathindex.js
File metadata and controls
24 lines (17 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//#1 - Sort 10 schools around your house by distance:
// insertion sort
//#2 - eBay sorts listings by the current Bid amount:
// radix or counting sort
//#3 - Sort scores on ESPN
// Quick sort
//#4 - Massive database (can't fit all into memory) needs to sort through past year's user data
// Merge Sort
//#5 - Almost sorted Udemy review data needs to update and add 2 new reviews
// Insertion Sort
//#6 - Temperature Records for the past 50 years in Canada
// radix or counting Sort
// Quick sort if decimal places
//#7 - Large user name database needs to be sorted. Data is very random.
// Quick sort
//#8 - You want to teach sorting
// Bubble sort