전체 글
-
동사의 시제영어(토익) 2021. 1. 18. 20:00
단순시제 현재 과거 미래 am/are/is 또는 일반동사의 현재형 was/were 또는 동사원형+-ed will+동사원형 현재 often 자주, always 항상, usually 보통, generally 대개, 보통 과거 yesterday 어제, last ~ 지난 ~에, ~ ago ~ 전에, in+과거 연도 (연도)에 미래 tomorrow 내일, in+시간 (시간) 후에, next week[month, year] 다음 주[다음 달, 내년] 진행 시제 현재 진행 과거 진행 미래 진행 am/are/is + 동사원형 + -ing was/were + 동사원형 + -ing will + be + 동사원형 + -ing 생각 · 의견 understand 이해하다, think 생각하다, believe 믿다, want 원..
-
-
-
프린터_queueC연습 2021. 1. 17. 11:59
#include #include #include #define MAX_QUEUE_SIZE 10000 typedef int element; typedef struct { element data[MAX_QUEUE_SIZE]; int front, rear; }queuetype; void init_queue(queuetype *q) { q->front = q->rear = 0; } int full(queuetype *q) { return ((q->rear + 1) % MAX_QUEUE_SIZE == q->front); } int empty(queuetype *q) { if (q->front == q->rear) return 1; else return 0; } void push(queuetype *q, eleme..