일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 안드로이드
- 젠킨스
- Firebase
- re-engineering
- 직장영어
- meta threads
- jenkins
- git
- 특수문자
- Android
- 쓰레드 이미지 다운로드
- 라이브아카데미
- 자료구조
- 영어회화
- 쓰레드 비디오 다운로드
- Realtime Database
- RecyclerView
- 특수기호
- firestore
- cloud firestore
- 메타 쓰레드
- 객치지향프로그래밍
- django
- endless scrolling
- 이모티콘
- conventional NFR
- Python
- 파이썬
- skeleton architecture
- non conventional NFR
Archives
- Today
- Total
목록queue (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