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
- nvidia-smi
- 프로그래머스
- 오류
- Selenium
- label
- mysql
- YOLO
- VS Code
- Linux
- 기타 연주
- C
- paramiko
- 채보
- C++
- error
- Python
- OpenCV
- windows forms
- Numpy
- JSON
- pytorch
- 컨테이너
- Docker
- 핑거스타일
- SSH
- C#
- ubuntu
- Visual Studio
- pandas
Archives
- Today
- Total
목록linked list (1)
기계는 거짓말하지 않는다
#include #include typedef enum eSelectMenu { selectAdd = 1, selectDelete, selectPrint, selectExit } eSelectMenu; typedef enum eBool { false, true } eBool; typedef struct Node { int data; struct Node* link; } Node; void PrintLinkedList(Node* head) { if (head == NULL) { printf("List Empty"); return; } for (; head != NULL; head = head->link) { printf("%d ", head->data); } } void AddLinkedListData(N..
C
2020. 12. 12. 00:02