All Stories
[C] Simple sort, 단순 정렬
Of the various algorithms for sorting elements in an array, Simple sort is the simplest. Simple sort is in principle the same as Bubble sort. Basically, it is implemented through a do...
In C, Dec 10, 2020[C] Selection sort, 선택 정렬
Selective sorting is a sorting algorithm that replaces the largest/smallest value among the comparison targets at a specific position. In the case of ascending order, the minimum valu...
In C, Dec 10, 2020[C] Bubble sort, 버블 정렬
Bubble sorting performs sorting in the form of comparing and exchanging values of two adjacent elements with the name given to the form performing sorting like bubbling. The differenc...
In C, Dec 10, 2020[C] Fining max value, 알고리즘 : 최대 값 찾기
To find the maximum value in an array, you can directly find the maximum value or return the index where the maximum value of the array is located. Since the maximum value in the arra...
In C, Dec 10, 2020[C] Array 배열
In Data type, a data type was declared for one variable and a value was assigned. However, it is very inefficient to declare 100 variables for 100 values. Arrays are used to manipulat...
In C, Dec 07, 2020