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
- osaka
- 인생의베일
- Anaconda
- 11047번
- 10814번
- Beakjoon
- 민음사북클럽
- 기숙사 바닥
- 나이순정렬
- insertion sort
- 정렬알고리즘
- 민음사
- 2858번
- 리솜포레스트
- 서머싯몸
- 리솜리조트
- 레스트리s20
- 11403번
- 헤브나인스파
- bubble sort
- Sort Algorithm
- python
- 정대건
- 경로 찾기
- Algorithm
- Selction Sort
- 동전0
- 2025
- Baekjoon
- vscode
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