当前位置:   article > 正文

C语言实现二叉排序树_c语言二叉排序树左旋

c语言二叉排序树左旋
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>

#define To_Be_Find_Num 20
#define TextPath "C:\\Users\\86132\\Desktop\\第十二周周末程序设计\\二叉排序树\\Number.txt"

typedef struct _BinaryTree BinaryTree;
struct _BinaryTree {
	int Date;
	BinaryTree* Left, * Right;
};

void Creat(BinaryTree* T, int n) {
	if (n < T->Date)
		if (NULL == T->Left) {
			T->Left = (BinaryTree*)malloc(sizeof(BinaryTree));
			T->Left->Date = n;
			T->Left->Left = T->Left->Right = NULL;
		}
		else
			Creat(T->Left, n);
	else if (NULL == T->Right) {
		T->Right = (BinaryTree*)malloc(sizeof(BinaryTree));
		T->Right->Date = n;
		T->Right->Left = T->Right->Right = NULL;
	}
	else
		Creat(T->Right,n);
}

int Search(BinaryTree* T , int n) {
	while (T) {
		if (T->Date > n)
			T = T->Left;
		else if (T->Date < n)
			T = T->Right;
		else
			return 1;
	}
	return 0;
}

void Creat_Tree(BinaryTree* T) {
		
	FILE* fp = fopen(TextPath, "r");
	int tmp;
	BinaryTree* p = T;
	fscanf(fp, "%d", &T->Date);

	while (EOF != fscanf(fp, "%d", &tmp)) {
		Creat(T, tmp);
	}
	fclose(fp);

}

int main() {

	BinaryTree* T = (BinaryTree*)malloc(sizeof(BinaryTree));
	T->Left = T->Right = NULL;
	Creat_Tree(T);
	if (Search(T, To_Be_Find_Num))
		printf("%d在二叉排序树里\n" , To_Be_Find_Num);
	else
		printf("%d不在二叉排序树里\n", To_Be_Find_Num);

	return 0;
}
  • 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
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69

在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/709600
推荐阅读
相关标签
  

闽ICP备14008679号