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 | 31 |
Tags
- Selenium
- 오류
- 채보
- OpenCV
- pip
- pytorch
- 핑거스타일
- mysql
- error
- Visual Studio
- paramiko
- SSH
- label
- Python
- C
- pandas
- 명령어
- C++
- 프로그래머스
- VS Code
- LIST
- Docker
- windows forms
- ubuntu
- 기타 연주
- C#
- Numpy
- JSON
- YOLO
- Linux
Archives
- Today
- Total
목록원형 큐 (1)
기계는 거짓말하지 않는다
원형 큐(Circular Queue)
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