자료구조 •트리(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
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 겨울방학
- 알고리즘개념
- DataStructure
- int변환
- 패턴 매칭
- 계획
- string
- c언어
- 보이어-무어
- string int로 변환
- 연결리스트
- atoi()
- 네트워크
- 시험준비
- 자료구조
- open address
- string숫자
- 다이어리
- Algorithms
- 알고리즘
- datastructures
- kmp 알고리즘
- 컴퓨터네트워크
- LinkedList
- 해싱 충돌
- 트리
- stringint
- Tree
- string개념
- string변환
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함