摘要:
#includestruct tree{ int data; tree *left,*right;};class Btree{ static int n; static int m;public: tree *root; Btree() { r... 阅读全文
摘要:
表达式求值时间限制:3000ms | 内存限制:65535KB难度:4描述ACM队的mdd想做一个计算器,但是,他要做的不仅仅是一计算一个A+B的计算器,他想实现随便输入一个表达式都能求出它的值的计算器,现在请你帮助他来实现这个计算器吧。比如输入:“1+2/4=”,程序就输出1.50(结果保留两位小... 阅读全文