c언어 3190번 뱀 (백준)
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> bool map(101)(101) = {0}; //사과의 존재유무 int exist(101)(101) = {}; //뱀이 있는 공간 typedef struct Node{ struct Node *next; int y; int x; }Node; typedef struct Queue{ Node *front; Node *rear; int count; }Queue; void queue_init(Queue *queue) { queue->front = queue->rear = NULL; queue->count = 0; return; } int … Read more