Descending order bubble / insertion / selection sort 구현.
(Implement here 부분만 구현하면 됩니다.)
Input size를 받고,
어떤 sort를 할지 결정,
사용자정의 array를 input으로 넣어줌.
예시)
Give me the size : 5
Give me the type of algorithm (0: Bubble, 1: Insertion, 2: Selection): 0
12
8
38
3
1
Output: 38 12 8 3 1