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