• 大小: 5.83MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-22
  • 语言: C/C++
  • 标签: C++代码  

资源简介

此压缩文件是《数据结构与算法(C++)实验和课程设计教程》的所有源代码以及开发包 书中例子对学习C++ 的人来说是个不错的资源

资源截图

代码片段和文件信息

// 文件路径名:calculator\main.h 
#include “utility.h“ // 实用程序软件包
#include “calculator.h“ // 计算器类

int main(void)
{
try // 用try封装可能出现异常的代码
{
bool bYes; // 用户接受用户回答是否继续

do
{
Calculator objexpression; // 表达式对象
cout << “输入表达式:“ << endl;
objexpression.Run(); // 运行表达式
cout << “是否继续“;
bYes = UserSaysYes(); // 接受用户回答
} while (bYes);
   }
catch (Error err) // 捕捉并处理异常
{
err.Show(); // 显示异常信息
}

system(“PAUSE“); // 调用库函数system()
return 0; // 返回值0 返回操作系统
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      10508  2008-09-21 22:47  软件包\adj_list_dir_graph.h

     文件      14554  2008-09-21 23:07  软件包\adj_list_dir_network.h

     文件        917  2008-09-21 22:49  软件包\adj_list_graph_vex_node.h

     文件        798  2008-02-28 21:54  软件包\adj_list_network_edge.h

     文件       1177  2008-02-28 21:31  软件包\adj_list_network_vex_node.h

     文件      11196  2008-09-21 22:59  软件包\adj_list_undir_graph.h

     文件      16972  2008-09-21 23:11  软件包\adj_list_undir_network.h

     文件      12460  2008-07-13 20:12  软件包\adj_matrix_dir_graph.h

     文件      12648  2008-09-22 07:37  软件包\adj_matrix_dir_network.h

     文件      10857  2008-05-23 13:10  软件包\adj_matrix_undir_graph.h

     文件      13028  2008-05-26 20:34  软件包\adj_matrix_undir_network.h

     文件       4695  2008-03-15 17:06  软件包\array.h

     文件       1559  2008-10-26 23:40  软件包\bfs.h

     文件      29515  2008-10-27 00:10  软件包\binary_avl_tree.h

     文件      16077  2008-10-27 00:02  软件包\binary_sort_tree.h

     文件      14976  2008-10-26 21:39  软件包\binary_tree.h

     文件       1357  2008-03-02 23:56  软件包\bin_avl_tree_node.h

     文件        630  2008-03-02 22:14  软件包\bin_serach.h

     文件       1030  2008-03-17 00:07  软件包\bin_tree_node.h

     文件        435  2008-03-05 12:09  软件包\bubble_sort.h

     文件       5080  2008-05-17 22:12  软件包\calculator.h

     文件      16036  2008-10-26 23:02  软件包\child_parent_forest.h

     文件      16224  2008-10-26 22:43  软件包\child_parent_tree.h

     文件        878  2008-02-26 10:39  软件包\child_parent_tree_node.h

     文件      17490  2008-10-26 23:24  软件包\child_sibling_forest.h

     文件      18941  2008-10-26 22:52  软件包\child_sibling_tree.h

     文件       1266  2008-03-23 23:40  软件包\child_sibling_tree_node.h

     文件       7325  2008-10-27 01:38  软件包\circ_lk_list.h

     文件       2998  2008-03-01 15:26  软件包\critical_path.h

     文件       1109  2008-03-16 14:11  软件包\cro_node.h

............此处省略602个文件信息

评论

共有 条评论