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