Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Tags
- C
- pandas
- Numpy
- VS Code
- C#
- nvidia-smi
- Linux
- label
- OpenCV
- 프로그래머스
- pytorch
- mysql
- YOLO
- 채보
- paramiko
- Python
- JSON
- 컨테이너
- 핑거스타일
- C++
- error
- 기타 연주
- ubuntu
- 오류
- Docker
- pip
- Visual Studio
- windows forms
- Selenium
- SSH
Archives
- Today
- Total
목록circular queue (1)
기계는 거짓말하지 않는다

element 한 자리가 항상 비게되지만, 재정렬 없이 큐 이용이 가능하다. First In First Out(FIFO) 구조 #include #define MAX_Q_SIZE 11// 원형 큐 이용 가능 크기 MAX_SIZE - 1 typedef enum eSelectMenu { selectAdd = 1, selectDelete, selectPrint, selectExit } eSelectMenu; typedef enum eBool { false, true } eBool; void Add(int [], int*, int*, int); int Delete(int [], int*, int*); eBool IsEmpty(int, int); eBool IsFull(int, int); int main(void)..
C
2020. 12. 9. 22:58