| 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
0tosize-1, and set the value at the current indexito be the minimum value over all the indices starting fromiuntil the end of the array
- go through the array from index