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