이원탐색트리 삽입,삭제,검색 설명좀
슬찬
질문 제목 : 파일처리 소스가 이해가안됩니다. 질문 요약 :중간중간에 주석은 되어있는데 나머지 주석처리좀부탁드려요 ㅜㅜ질문 내용 :
#include stdio.h
#include stdlib.h
typedef struct node
{
struct node* left;
struct node* right;
int key;
} node;
/p
node* createnode(int data);
node* searchnode(node* tree, int finddata);
node* deletnode(node* tree, int data);
void insertnode(node* tree, node* newnode);
void printtree(node* tree);
int main()
{
node* tree = null;
node* newnode;
node* findnode;
int input, change;
int ch;
int i = 0;
while(1)
{
printf(binary search tree program(bst) \n);
printf(--------------------------------\n);
printf(1. insert \n);
printf(2. delete \n);
printf(3. search \n);
printf(4. 노드검색\n);
printf(5. 종료\n);
printf(--------------------------------\n);
printf(선택: );
scanf(%d, &ch);
switch(ch)
{
casecase 1 :
system(cls);
if(i==0) //첫번째입력인지아닌지확인한다
{
printf(임의의정수입력);
scanf(%d, &input);
tree = createnode(input);
i++;
}
else
{
printf(지금트리에있는값);
printtree(tree);
printf(\n););
printf(새로운node()생성되었습니다. );
scanf(%d, &input);
newnode = createnode(input);
insertnode(tree, newnode);
}
system(pause);
system(cls);
break;
case 2 :
system(cls);
if(tree == null)
{
printf(트리가생성되지않았습니다. 트리를생성해주세요\n);
system(pause);
system(cls);
break;
}
printf(현재트리에있는값);
printtree(tree);
printf(\n);
printf(이진트리에삭제할값을입력하세요);
scanf(%d, &input);
deletnode(tree, input);
system(cls);
break;
case 3 :
system(cls);
if(tree == null)
{
printf(트리가생성되지않았습니다. 트리를생성해주세요\n);
system(pause);
system(cls);
break;
}
printf(현재트리에있는값);
printtree(tree);
printf(\n);
printf(이진트리에서수정시킬값을입력하세요);
scanf(%d, &input);
printf(이진트리에서수정할값을입력하세요);
scanf(%d, &change);
deletnode(tree, input);
if(tree == null)
{
tree = createnode(change);
}
else
{
newnode = createnode(change);
insertnode(tree, newnode);
}
printf(현재트리에있는값);
printtree(tree);
printf(\n);
system(pause);
system(cls);
break;
case 4 :
system(cls);
if(tree == null)
{
printf(트리가생성되지않았습니다. 트리를생성해주세요\n);
system(pause);
system(cls);
break;
}
printf(이진탐색트리의노드를표시합니다);
printtree(tree);
printf(\n);
system(pause);
break;
case 5 :
exit(1);
}
}
}
node* createnode(int data) //노드생성
{
node* newnode = (node*)malloc(sizeof(node));
newnode-left = null;
newnode-right = null;
newnode-key = data;
return newnode;
}
node* searchnode(node* tree, int finddata) //노드찾기
{
if(tree == null) return null;
if(tree-key == finddata)
{
return tree;
}
else if(tree-left, finddata)
{
searchnode(tree-right, finddata);
}
else
{
searchnode(tree-left, finddata);
}
}
node* deletnode(node* tree, int data) //노드삭제
{
node* treelist = tree;
node* minnode = null;
node* previous = null;
int wich = 0;
while(1)
{
if(treelist-key == data){
break;
}
else if(treelist-key data)
{
previous = treelist;
treelist = treelist-left;
wich = 0;
}
else if(treelist-key data)
{
previous = treelist;
treelist = treelist-right;
wich = 1;
}
}
//지울노드의자식이둘다있을경우
if((treelist-left != null) && (treelist-right != null))
{
while(1){
node* _treelist = treelist;
node* _previous = null;
while(_treelist-left != null)
{
_previous = _treelist;
_treelist = _treelist-left;
}
minnode = _treelist; //최소값
if((minnode-left != null) || (minnode-right != null))
{
_previous-left = minnode-left;
_previous-right = minnode-right;
}
else
{
_previous-left = null;
}
minnode-left = treelist-left;
minnode-right = treelist-right;
if(wich == 0)
previous-left = minnode;
else if(wich == 1)
previous-right = minnode;
return treelist;
}
}
else if((treelist-left == null) && (treelist-right == null))
{
if(wich == 0)
previous-left = null;
else if(wich == 1)
previous-right = null;
return treelist;
}
//노드의자식이하나만있을경우
else if((treelist-left != null) || (treelist-right != null))
{
if(wich == 0)
{
if(treelist-left != null)
previous-left = treelist-left;
else if(treelist-right != null)
previous-right = treelist-right;
}
else if(wich == 1)
{
if(treelist-left != null)
previous-left = treelist-left;
else if(treelist-right != null);
previous-right = treelist-right;
}
return treelist;
}
return null;
}
void insertnode(node* tree, node* newnode) //노드삽입
{
if(newnode-key tree-key)
{
if(tree-right != null) insertnode(tree-right, newnode);
else tree-right = newnode;
}
else if(newnode-key tree-key)
{
if(tree-left != null) insertnode(tree-left, newnode);
else tree-left = newnode;
}
}
void printtree(node* tree) //이진탐색트리출력(중위)
{
if(tree == null) return;
printtree(tree-left);
printf(%4d, tree-key);
printtree(tree-right);
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |
2675297 | Prity 비트 발생기 | 한란 | 2024-11-16 |
2675249 | C책 좀 추천해 주세요 (2) | 딸기우유 | 2024-11-16 |