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
- pip
- pytorch
- VS Code
- OpenCV
- 핑거스타일
- Docker
- 채보
- ubuntu
- YOLO
- paramiko
- mysql
- 컨테이너
- Visual Studio
- windows forms
- error
- 기타 연주
- 오류
- C++
- Linux
- SSH
- C#
- label
- Python
- LIST
- C
- 프로그래머스
- JSON
- pandas
- Numpy
- Selenium
Archives
- Today
- Total
목록circular queue (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