일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- jenkins
- 젠킨스
- meta threads
- git
- 파이썬
- non conventional NFR
- 자료구조
- 라이브아카데미
- Python
- 객치지향프로그래밍
- Realtime Database
- 메타 쓰레드
- 이모티콘
- conventional NFR
- 특수기호
- firestore
- RecyclerView
- 안드로이드
- 특수문자
- Android
- 직장영어
- django
- 쓰레드 비디오 다운로드
- 쓰레드 이미지 다운로드
- skeleton architecture
- endless scrolling
- 영어회화
- Firebase
- re-engineering
- cloud firestore
Archives
- Today
- Total
목록BST (1)
Owl Life
자료구조_Binary Search Tree (BST)
Binary Search Tree 자료구조입니다. 메모리는 동적이 아닌 정적으로 잡아서 사용하고 있으니, 필요시 동적할당으로 수정하시면 됩니다. 소스는 아래 참고 바랍니다. #include "iostream" using namespace std; #define MAX_DATA 10000 #define INIT_DATA -1 typedef int T; typedef struct _node { T data; struct _node *left, *right; } NODE; NODE tree[MAX_DATA + 1]; NODE *root_node; int tree_idx; NODE *alloc_node() { return &tree[tree_idx++]; } void init() { for (int i = 0;..
자료구조_알고리즘
2018. 5. 11. 21:50