Recent posts

[C] Selection sort

less than 1 minute read

Selective sorting is a sorting algorithm that replaces the largest/smallest value among the comparison targets at a specific position. In the case of ascendi...

[C] Bubble sort, 버블 정렬

less than 1 minute read

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 li...

[C] Fining max value

less than 1 minute read

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...

[C] 배열

1 minute read

데이터 타입을 설명할 때, Data type에서는 변수 한개에 대해 자료형을 선언하고 값을 대입했다. 하지만 100개의 값에 대해서 100개의 변수를 선언하는 것은 매우 비효율적이다. 이렇게 여러 값을 다루고자 할 때 배열을 사용한다. 배열은 같은 자료형을 묶어서 하나로 관리하는...

[C] Array

2 minute read

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. Ar...