我重写了我的二叉树实现,它很接近,但是子树的删除仍然缺乏完整的功能。
移除没有孩子的树根本行不通。事实上,当调用一个方法来搜索树中被删除的树的实例时,搜索方法返回 true(即使该树和树中包含的项目在删除方法结束时被释放)。我无法解决这个问题,即使使用 gdb。
即使它是根节点,删除带有一个子节点的树也是可行的。
移除一棵有两个孩子的树只能部分起作用。被移除树的左树(指针)被设置为指向被移除树的指针,该指针被保存在比被移除树更高的树中。但是,删除的树的权利丢失了。
树.h
/*-------------------------------Tree.h---------------------------------*/
#ifndef TREE
#define TREE
#define MAXLEVEL 4
typedef struct cat{
char *name;
int age;
}Item;
/*User Comparison Function*/
typedef int (*comp)(const Item *, const Item *);
typedef struct tree{
int branches;
Item *item;
struct tree *left, *right;
}Tree;
Tree *initializeTree(Tree *);
int isEmpty(Tree *);
int isFull(Tree *);
Tree **searchTree(Tree **, Item *, comp);
int addToTree(Tree **, Item *, comp);
int removeFromTree(Tree **, Item *, comp);
void printTree(Tree *, int);
Tree *copyToTree(Item *);
int returnCount(Tree *);
#endif
树.c
/*-------------------------------Tree.c---------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include "Tree.h"
#include <math.h>
Tree *initializeTree(Tree *t){
if((t = malloc(sizeof(Tree))) == NULL)
return NULL;
t->left = t->right = NULL;
t->item = NULL;
t->branches = 0;
return t;
}
int isEmpty(Tree *t){
return (t->branches == 0) ? 1:0;
}
int isFull(Tree *root){
return (root->branches == ((int)pow(2, MAXLEVEL)-1)) ? 1:0;
}
Tree *copyToTree(Item *thing){
Tree *tmp = initializeTree(tmp);
tmp->item = thing;
return tmp;
}
Tree **searchTree(Tree **t, Item *thing, comp f){
int compare;
/*t == NULL || ..*/
if((*t) == NULL || (*t)->item == NULL)
return NULL;
if((compare = f((*t)->item, thing)) == 0)
return t;
else if(compare > 0)
return searchTree((&((*t)->left)), thing, f);
else
return searchTree((&((*t)->right)), thing, f);
}
int returnCount(Tree *t){
if(t == NULL)
return;
t->branches = 1 + returnCount(t->left);
t->branches += returnCount(t->right);
return t->branches;
}
int addToTree(Tree **t, Item *thing, comp f){
if(*t == NULL || (*t)->item == NULL){
*t = copyToTree(thing);
if(*t == NULL)
return 0;
return 1;
}
if(f((*t)->item, thing) >= 0)
return addToTree(&((*t)->left), thing, f);
else
return addToTree(&((*t)->right), thing, f);
}
int removeFromTree(Tree **t, Item *thing, comp f){
Tree **tmp, *tmp2;
if((tmp = searchTree(t, thing, f)) == NULL)
return 0;
tmp2 = *tmp;
if((*tmp)->left == NULL ^ (*tmp)->right == NULL)
((*tmp)->right == NULL) ? (*tmp = (*tmp)->left):(*tmp = (*tmp)->right);
else if((*tmp)->left != NULL && (*tmp)->right != NULL){
(*tmp) = (*tmp)->left;
/*tmp3 = *tmp;*/
while((*tmp)->right != NULL)
(*tmp) = (*tmp)->right;
(*tmp) = tmp2->right;
}
free(tmp2->item);
free(tmp2);
return 1;
}
void printTree(Tree *t, int level){
if(t == NULL || t->item == NULL)
return;
int spaces = 5*(MAXLEVEL - level);
printTree(t->left, level+1);
while(spaces-- > 0)
putchar(' ');
putchar(level + '0');
putchar('\n');
printTree(t->right, level+1);
}
主程序
/*-------------------------------Main.c---------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "Tree.h"
#define MAXNAME 20
int itemComp(const Item *, const Item *);
int promptUser(void);
Item *createUserItem();
int main(){
Tree *userTree = initializeTree(userTree);
Item *userItem;
int userInput;
do{
userInput = promptUser();
switch(userInput){
case 1:
if((userItem = createUserItem()) && addToTree(&userTree,userItem,itemComp))
puts("Cat successfully added!");
else
puts("Could not add cat!");
break;
case 2:
if(userItem = createUserItem()){
if(removeFromTree(&userTree, userItem, itemComp))
puts("Cat successfully removed!");
}
else
puts("Could not remove cat!");
break;
case 3:
if((userItem =createUserItem()) && searchTree(&userTree,userItem,itemComp))
puts("Cat found!");
else
puts("Cat not found!");
break;
case 4:
if(isEmpty(userTree))
puts("Tree is empty!");
else
puts("Tree is not empty!");
break;
case 5:
if(isFull(userTree))
puts("Tree is full!");
else
puts("Tree is not full!");
break;
case 6:
printTree(userTree, 1);
break;
case 0:
break;
default:
puts("Not an option!");
break;
}
}while(userInput);
return 0;
}
int promptUser(){
puts("----------Options Menu-----------");
puts("1. Add Cat");
puts("2. Remove Cat");
puts("3. Search for cat");
puts("4. Check if Empty");
puts("5. Check if Full");
puts("6. Print Tree");
puts("0. Quit");
int userinput = getchar() - '0';
while(getchar() != '\n')
;
return userinput;
}
Item *createUserItem(){
static char nameBuf[MAXNAME];
puts("Enter cat name: ");
if(fgets(nameBuf, MAXNAME, stdin) == NULL)
return NULL;
Item *tmp = malloc(sizeof(Item));
if((tmp->name = malloc(strlen(nameBuf))) == NULL)
return NULL;
strcpy(tmp->name, nameBuf);
tmp->age = -1;
puts("Enter cat age");
scanf("%d", &tmp->age);
while(getchar() != '\n')
;
return tmp;
}
int itemComp(const Item *thing_one, const Item *thing_two){
int comparison;
if(comparison = strcmp(thing_one->name, thing_two->name)){
printf("The comparison is [%d]\n", comparison);
return comparison;
}
return thing_one->age - thing_two->age;
}
计划是:
如果它没有孩子,就为树释放内存;
如果当前树有一个子节点,则将当前树指向该子节点的指针设置为指向当前树的指针,因为指向当前树的指针包含在当前树的父节点中。然后释放当前树的内存。
如果当前树有两个孩子,则将当前树指向左孩子的指针设置为指向当前树的指针(出于上述原因),然后,遍历左孩子的右指针,直到出现空缺(NULL 指针)。将当前树的右孩子设置为该空缺。
有任何想法吗?