https://julian5383.tistory.com/75?category=926879 [운영체제] 연결리스트를 이용한 FIFO 알고리즘 만들기 case에 있는 파일들은 트레이스 파일입니다. #include #include typedef struct node { int num; struct node* next; }NODE; NODE* head; NODE* tail; void init() { head = (NODE*)malloc(sizeof(NODE)); tail =.. julian5383.tistory.com 위의 게시물에서 이어집니다. #include #include #include #define TRUE 1 #define FALSE 0 typedef struct node { int num; stru..