摘要:
这个程序我在自己的电脑上运行正常,但是在PKU的网站上提交后结果就是编译错误。估计是那个编译器的版本太老了吧。我对这个代码的满意率为70%-80%,有些地方还是处理得不太好,但是正常工作。干掉了几个非常要命的bug,现在可以正常工作了。北大ACM的编译器版本貌似有点老了,我在DEV和CodeBlocks下编译运行都没问题。能够正常完成样例输入输出,而且满足要求。 1 #include <iostream> 2 #include <cstdlib> 3 using namespace std; 4 class Tele 5 { 6 private: 7 ... 阅读全文
摘要:
这个代码写的时间比较短,也就是半个小时,测试的也不多,但是有一定的参考价值。 1 #include <iostream> 2 3 using namespace std; 4 template<class T> 5 class Queue 6 { 7 private: 8 T *queuehead; 9 int maxsize; 10 int front; 11 int rear; 12 public: 13 Queue(int max=10); 14 ~Queue(); 15 bool Isempty(); 16 bool Isfull(); 17 bool addi 阅读全文