반응형 circular queue1 C Circular Queue 만들기 Circular Queue의 C 버전이다 내용은 C++의 Circular Queue와 같으므로 내용보단 구조적인 차이를 염두해 두고 만들어 보겠다 https://suldenlion.tistory.com/78 (C++로 자료구조 구현하기) Queue 만들기 (version.2 - Circular Queue) C++로 자료구조 만들기 Circular Queue를 만들어 볼 것이다. Circular Queue는 문자 그대로 원형 큐, 즉 큐의 rear 부분이 자료구조의 끝을 가리키는 경우 enqueue를 한다면 rear가 자료구조의 맨 앞을 가리키 suldenlion.tistory.com 우선 main.c 프로그램이다 #include #include "queue.h" extern void print(Queue.. 2023. 3. 14. 이전 1 다음 반응형