높이측정프로그램만 구현하면되는데
물보라
질문 제목 :
처음에 공백 이원 탐색 트리에서 시작하여 n번의 무작위 삽입을 수행하는 프로그램을 작성하여라. 삽입될 값으 생성하기 위해 난수 생성기를 이용하라 결과 이원탐색 트리의 높이를 조사하고 높이를 log 2 n으로 나눠라.질문 내용 :
어디가 틀렸나요?#includestdlib.h
#includeconio.h
#includestring.h
#includestdio.h
#includetime.h
#includemath.htypedef struct bintree *treepointer;struct bintree {
treepointer leftchild;
int key;
treepointer rightchild;
};treepointer bin_node = null;treepointer insert(treepointer bin_node, int key);treepointer search(treepointer bin_node, int key, treepointer *parent);
void printbin(treepointer bin_node);treepointer insert(treepointer bin_node, int x)
{
treepointer ptr, parent;
treepointer new;
ptr = search(bin_node, x, &parent);
if ( ptr != null ) {
printf(\n중복된 키 값이 있음.\n\n);
return bin_node;
}
new = (treepointer)malloc(sizeof(struct bintree));
new-key = x;
new-rightchild = null;
new-leftchild = null;
if ( bin_node == null ) bin_node = new;
else if ( x parent-key ) parent-leftchild = new;
else parent-rightchild = new;
return bin_node;
}
treepointer search(treepointer bin_node, int key, treepointer *parent)
{
treepointer ptr;
ptr = bin_node;
*parent = null;
if ( ptr == null ) return ptr;
while ( ptr != null ) {
if ( key == ptr-key ) return ptr;
*parent = ptr;// 찾을 키값을 가진 노드의 부모노드
if ( key ptr-key ) ptr = ptr-leftchild;
else ptr = ptr-rightchild;
}
return ptr;
}void printbin(treepointer ptr) {
if (ptr != null)
{
printf(();
printbin(ptr-leftchild);
printf (%d, ptr-key);
printbin(ptr-rightchild);
printf());
}
}int height(treepointer bin_node)
{
int right_height=0;
int left_height=0;
if(bin_node == null)
return 0;
else{
left_height=height(bin_node-leftchild);
right_height=height(bin_node-rightchild);
}
return left_height right_height ? left_height+1 : right_height+1;
}int main()
{
int n,i,height=0;
int menu = 0;
int key;
treepointer ptr;
treepointer parent;
srand((unsigned)time(null));
while (menu != 2) {
printf(\n이진 탐색 트리 연산\n\n);
printf(1. 삽입\n);
printf(2. 종료\n);
printf(목록선택 : );
scanf(%d, &menu);
switch(menu) {
case 1 :
printf(\n삽입 개수 입력 : );
scanbsp;scanf(%d, &n);
for(i=0;in;i++){
key = rand()%n;
bin_node = insert(bin_node, key);
printf(\n);
printbin(bin_node);
printf(\n);
}
printf(\n%d, height(bin_node));//에러가 뜨는부분
printf(\n높이 비율 height/log(n)/log2 : %d,((height)/log(n)/log(2)));
break;
case 2 :
printf(\n프로그램 종료됩니다.\n);
free(bin_node);
break;
default :
printf(\n잘못 선택하셨습니다.\n);
}
}
getch();
return 0;
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676182 | 숫자 순서대로 배열하는법 | 권뉴 | 2024-11-24 |
2676152 | 기본적인거 하나 질문드립니다. | 개미 | 2024-11-24 |
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
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 |