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