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 |
Tags
- Sort Algorithm
- 11403번
- 레스트리s20
- 나이순정렬
- insertion sort
- vscode
- 정대건
- 헤브나인스파
- Baekjoon
- Anaconda
- 2025
- Selction Sort
- 서머싯몸
- python
- 기숙사 바닥
- 정렬알고리즘
- bubble sort
- Algorithm
- 경로 찾기
- 11047번
- 리솜포레스트
- Beakjoon
- 리솜리조트
- 민음사북클럽
- 10814번
- 2858번
- 인생의베일
- 동전0
- osaka
- 민음사
Archives
- Today
- Total
목록algorithm/data structure (1)
JIyeon's life
[Data structure] linked list sort하기!
자료구조linked list sort linked list sort #include #include #include using namespace std;typedef struct node {int data;node *link;} node;int main(){node *head = NULL;node *tmp, *prev, *p;int n, x;printf("갯수 입력:");scanf("%d", &n);for (int i = 0; i data = x;tmp->link = NULL;if (head == NULL)head = tmp;else {if (x data) {tmp->li..
algorithm/data structure
2018. 9. 20. 17:00