相关代码 |
|
// 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(); }
相关资源 |
|