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
- pytorch
- Linux
- Selenium
- Visual Studio
- mysql
- 기타 연주
- 오류
- 프로그래머스
- C++
- SSH
- Docker
- C#
- C
- windows forms
- VS Code
- OpenCV
- ubuntu
- Numpy
- label
- JSON
- 명령어
- LIST
- Python
- 채보
- error
- pandas
- pip
- paramiko
- 핑거스타일
- YOLO
Archives
- Today
- Total
목록링크리스트정렬 (1)
기계는 거짓말하지 않는다
이중 연결 리스트(Doubly Linked List)
노드 추가 시 끝이 아닌 오름차순 추가가 되도록 구현. DoublyLinkedListMain.c #include #include #include #include "DoublyLinkedList.h" int main() { int val, select; char c; dnode* head = NULL, * tail = NULL, * temp, * ptr; mbool autoLookupAddNode = t, autoLookupDeleteNode = t; while (1) { printf("\n1. 추가\n2. 삭제\n3. 조회\n"); printf("입력 (N = exit): "); scanf_s("%d", &select); if ((c = getchar()) == 'N') break; else if (In..
C
2021. 4. 25. 18:23