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