Posts
All the articles I've posted.
-
[C] 스택
스택은 말 그대로 데이터를 차곡차곡 쌓아 올린 형태의 자료구조이다. 상자 속에 책을 차례차례 쌓게되면 맨 밑의 책부터 빼내는 것이 불가능한 것 처럼 스택 역시 맨 위에서부터 접근하고 처리하는 자료구조이다. 이러한 자료구조는 가장 마지막에 삽입된 데이터...
-
[C] Data Structure
Data structure in the dictionary sense is to express, store, and organize data in order to efficiently process data. In designing a software...
-
[C] 자료구조
사전적인 의미의 자료구조는 자료에 대한 처리를 효율적으로 수행하기 위해 자료를 표현하고 저장하고 정리하는 것이다. 프로그램의 설계함에 있어 구현의 난이도나 최종 결과물에 대한 의존성 측면에서 적절한 자료구조를 선택하는 것은 다른 것들보다 우선시되어야할...
-
[C] Heap & Dynamic memory allocation
In the previous post, we looked at the arrayarray form that is declared and used with a fixed size variable type. However, the static memory...
-
[C] Structure
Structures are mainly used when you want to collect and deal with various data types from declaring and using data types one by one. Structu...