2-3树的数据结构以及演示程序

源代码在线查看: 2-3tree.cpp

软件大小: 40 K
上传用户: pangbo888
关键词: 数据结构 程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				// 2-3Tree.cpp : 定义控制台应用程序的入口点。
				//
				
				#include "stdafx.h"
				
				int _tmain(int argc, _TCHAR* argv[])
				{
					Tree23  t = Tree23  ();
				
					char ans = 'y';
					int toInsert;
					while (ans != 'n' && ans != 'N') {
						t.formatPrint();
						General::Input("请输入要插入的结点数据域的值:", toInsert);
						if (!t.Insert(new int(toInsert))) {
							cout							General::pause();
						}
						else cout						t.formatPrint();
						General::pause();
						General::Input("还要继续插入吗?(Y/N)", ans);
					}
					General::pause();
				}
				
							

相关资源