Posts
All the articles I've posted.
-
[C] Recursive call
Recursive calls are calling the same function within a function, i.e. itself. Recursive calls call the same function within a function, but ...
-
[C] 재귀호출
재귀호출은 함수 내에서 동일한 함수, 즉 자기 자신을 호출하는 것이다. 재귀호출은 함수 내에서 동일 함수를 호출하지만 메모리 영역이 다르게 설정되므로 다른 함수처럼 작동한다. 일반적으로 재귀호출을 사용하는 함수는 재귀 호출에 대한 종료 조건을 횟수나 ...
-
[C] Queue
Unlike stacks that have a LIFO structure, a queue is a FIFOfirstinputfirstoutput structure in which the positions of insertion and deletion ...
-
[C] 큐
후입선출구조를 가지는 스택과는 다르게 큐는 데이터의 삽입과 삭제의 위치가 반대인 선입선출 구조이다. 즉 먼저 넣었던 데이터가 먼저 나오는 자료구조이다. 데이터를 꺼내오는 위치와 넣는 위치가 다르기 때문에 큐는 2개의 인덱스를 사용한다. 주로 front...
-
[C] Stack
The stack is literally a data structure in the form of stacking data one by one. The stack is also a data structure that is accessed and pro...