자료구조 •트리(Tree) -구조체 배열•
트리(Tree) -구조체 배열 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556#include #include typedef struct node { //노드의 데이터, 왼쪽 자식노드, 오른쪽 자식노드 (부모노드 추가 가능) char data; int left; int right;}node; node T[101];int N; void initTree() //트리 초기화{ for (int i = 0; i
STUDY/자료구조(Data Structures)
2017. 12. 29. 16:37
-트리(Tree) 개념 정리-
STUDY/자료구조(Data Structures)
2017. 12. 27. 20:18
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 보이어-무어
- 알고리즘
- atoi()
- open address
- Tree
- kmp 알고리즘
- stringint
- 네트워크
- DataStructure
- string개념
- 패턴 매칭
- string int로 변환
- 해싱 충돌
- 겨울방학
- string숫자
- 연결리스트
- 자료구조
- 컴퓨터네트워크
- 알고리즘개념
- datastructures
- int변환
- string
- 시험준비
- 다이어리
- string변환
- LinkedList
- 트리
- Algorithms
- 계획
- c언어
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함