资源简介
采用红黑树类的行书,红黑树的基本功能操作都有,插入删除中序遍历打印,采用菜单式操作。
代码片段和文件信息
/*
All rights reserved
This program is about the data structure of RedBlackTree
The program include the file : redblack.h main.cpp
Abstract : It severs an class named RBTEE and some interface about the RBTREE:
Initalize the RBTREE
Insert node to the RBTREE
Delete node of the RBTREE
Print all the node of the RBTREE
The latest version is : 1.0
Author: Baimen
It has been tested in windows and Linux.
You can compile it with VS2008 or GCC
In linux you can compile it with the command : $g++ -o rbtree redblackt.h main.cpp
and use is with command $./rbtree
*/
#include “redblack.h“
int main ()
{
rbtree debian; //定义树
// 采用菜单控制对红黑树的操作
string choice = ““;
cout<<“\3 0: Init\t\3 1 : Insert\t\3 2: Delpoint\t\3 3: Print\t\3Q:quit\n“;
cout<<“Please choose : “;
while ( choice != “Q“){
cin>>
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1838 2008-10-23 23:29 REDBLACkTREE\main.cpp
文件 17131 2008-10-21 14:57 REDBLACkTREE\redblack.h
目录 0 2008-10-29 17:40 REDBLACkTREE
----------- --------- ---------- ----- ----
18969 3
- 上一篇:MFC 自定义消息实现
- 下一篇:CChart开源版本,2013.10.14上传
相关资源
- c++ 数字键盘设计(源码)
- Linux优先级时间片调度C++源码
- c++ RoyCardTableView 列表插入
- 电机控制平台(c++源码)
- PID 控制算法实现(fuzzy-PID-controller)
- c++ 获取当前执行位置的调用栈
- windows文件夹监控(c++源码)
- C++ tts开发 可调节语速,音量,切换语
- c++(3_MSGS.C)
- c++实现P2PDemo(点对点聊天)
- windows 串口升级工具(c++源码)
- ntmedsys.sys(c++源码)
- DSS中的RTSPclientLib程序
- c 常用的数据结构 (Errata for Ford/Top
- RTSPRTP C++ 源代码
-
c++ xm
lRPC - rip协议编程及代码实现
- ippicv_2017u3_win_intel64_general_20170822.zip
- Windows Sockets 编程及UR机器人通信数据
- 跟进域名解析IP地址(c++ builder)
- iCord-屏幕录制(c++源码)
- 用ADO 对C++连接ORACLE 数据库
- 基于libevent 实现的http服务C++(myhttp
- 多人聊天室c++源码(附服务器端以及
- c++ 不打开图档可替换字符串源码
- opencv:视频图片相互转换程序
- VC++图片控件(Picture Control)显示资源
- Opencv3中SIFT算法详解
- MFC图片操作(PRO5_PNGDlg.cpp)
- c++ 实现 凯撒加密、解密
评论
共有 条评论