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 |
Tags
- 컨테이너
- ubuntu
- C
- Python
- VS Code
- C#
- 프로그래머스
- YOLO
- C++
- 오류
- pytorch
- Linux
- Docker
- OpenCV
- 채보
- error
- Numpy
- mysql
- Visual Studio
- SSH
- windows forms
- label
- 핑거스타일
- Selenium
- 기타 연주
- pandas
- paramiko
- pip
- LIST
- JSON
Archives
- Today
- Total
목록연결 리스트 (1)
기계는 거짓말하지 않는다
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/esvIAg/btqP0sTbhiU/XvmUrAXNDhV9TIBtOkOKwk/img.png)
#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