且未

博客园 首页 新随笔 联系 订阅 管理

2017年7月10日 #

摘要: 运算符重载题目#include#include#include#include#include#includeusing namespace std;struct node{ string name; ... 阅读全文
posted @ 2017-07-10 20:09 阿聊 阅读(85) 评论(0) 推荐(0)

摘要: 题目题意:已知先序遍历,中序遍历,求后序遍历,主要注意输出的格式。这道题用二叉搜素树来做,二叉搜素树都满足左子树上的所有节点都比自己的小,而右子树上所有的节点都比自己大这一条件。二叉树有先序,中序,后序,这三个序... 阅读全文
posted @ 2017-07-10 18:35 阿聊 阅读(88) 评论(0) 推荐(0)