일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 특수문자
- 쓰레드 비디오 다운로드
- 특수기호
- Realtime Database
- 라이브아카데미
- non conventional NFR
- re-engineering
- endless scrolling
- 자료구조
- jenkins
- conventional NFR
- cloud firestore
- Firebase
- 파이썬
- 안드로이드
- git
- skeleton architecture
- 영어회화
- 메타 쓰레드
- RecyclerView
- django
- 직장영어
- 이모티콘
- Android
- 젠킨스
- Python
- 쓰레드 이미지 다운로드
- meta threads
- firestore
- 객치지향프로그래밍
Archives
- Today
- Total
목록dll (1)
Owl Life
자료구조_Double Linked List (DLL)
Double Linked List 소스코드입니다. #include "iostream" using namespace std; #define MAX_NODE 100 typedef int DATA; typedef struct _node { DATA data; struct _node *prev; struct _node *next; } NODE; NODE node_list[MAX_NODE + 1]; int node_list_idx; NODE *head, *tail; void init() { node_list_idx = 0; head = 0; tail = 0; } NODE *alloc_node(DATA data) { NODE* node = &node_list[node_list_idx++]; node->data = ..
자료구조_알고리즘
2018. 5. 11. 22:05