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
- ubuntu
- Docker
- windows forms
- Visual Studio
- 오류
- C
- pip
- error
- VS Code
- Linux
- paramiko
- Python
- C#
- label
- 채보
- C++
- pytorch
- YOLO
- mysql
- 기타 연주
- SSH
- 프로그래머스
- Numpy
- pandas
- 핑거스타일
- OpenCV
- 명령어
- Selenium
- JSON
- LIST
Archives
- Today
- Total
목록연결 리스트 (1)
기계는 거짓말하지 않는다
링크드 리스트(Linked List)
#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