二叉排序树的查找、插入、删除
2021/7/19 6:09:33
本文主要是介绍二叉排序树的查找、插入、删除,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
include <stdio.h>
include<stdlib.h>
include<stdbool.h>
typedef char TElemType; typedef struct BiTree { TElemType Data; struct BiTree* LChild, * RChild; }BiTNode, * BiTree; bool Search(BiTree T, TElemType key, BiTree f, BiTree& p) { if (!T) { p = f; return false; } else { if (T->Data == key) { p = T; return true; } else if (T->Data < key)Search(T->RChild, key, T, p); else Search(T->LChild, key, T, p); } } bool Insert(BiTree& T, TElemType Item) { BiTree p; if (!Search(T, Item, NULL, p)) { BiTree NewPTree = (BiTree)malloc(sizeof(BiTNode)); NewPTree->Data = Item; NewPTree->LChild = NewPTree->RChild = NULL; if (!p) { T = NewPTree; } else { if (Item < p->Data)p->LChild = NewPTree; else p->RChild = NewPTree; } } else return false; } bool Delete(BiTree& T, TElemType Item) { BiTree p; Search(T, Item, NULL, p); if (!p->LChild) { BiTree q = p; p = p->RChild; free(q); } else if (!p->RChild) { BiTree q = p; p = p->RChild; free(q); } else { BiTree s = p->LChild, q = p; while (s->RChild) { q = s; s = s->RChild; } p->Data = s->Data; if (q != p)q->RChild = s->LChild; else q->LChild = s->LChild; } }
这篇关于二叉排序树的查找、插入、删除的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-04百万架构师第六课:设计模式:策略模式及模板模式
- 2025-01-04百万架构师第七课:设计模式:装饰器模式及观察者模式
- 2025-01-04适用于企业管理的协作工具API推荐
- 2025-01-04挑战16:被限流的CPU
- 2025-01-03企业在选择工具时,如何评估其背后的技术团队
- 2025-01-03Angular中打造动态多彩标签组件的方法
- 2025-01-03Flask过时了吗?FastAPI才是未来?
- 2025-01-0311个每位开发者都应知道的免费实用网站
- 2025-01-03从REST到GraphQL:为什么以及我是如何完成转型的
- 2025-01-03掌握RAG:从单次问答到连续对话