selection algorithm
// main.cpp // SelectSort // // Created by drake on 2020/05/24. // Copyright © 2020 drake. All rights reserved. // #include int main(int argc, const char * argv[]) { // insert code here... int temp, i, j, index, min; int arr[10] = {5, 10, 1, 8, 7, 6, 4, 3, 2, 9}; index = 0; for (i=0; i
더보기
]