Previous Lecture | lect13 Slides | Next Lecture |
Code from class
Code from class: https://github.com/ucsb-cs16-su17/code-from-class/tree/master/Lec13
Topics
- Recursion on strings and arrays
- Sorting an array using selection sort
- go through the array from index
0
tosize-1
, and set the value at the current indexi
to be the minimum value over all the indices starting fromi
until the end of the array
- go through the array from index