
ACM/Algorithm
Cryking
双重性格,一半喜静,一半喜动
展开
-
ACM-1002(使用STL)
时间限制: 2000ms 内存限制: 65536kB 描述 Businesses like to have memorable telephone numbers. One way to make a telephone number memorable is to have it spell a memorable word or phrase. For example, you can原创 2012-12-20 10:57:01 · 1101 阅读 · 0 评论 -
[C++]双向链表操作
头文件--定义基类、双向链表类、结点类#include "iostream.h" #include "string.h" class Object //定义抽象类 { public: Object(){} virtual int IsEqual(Object&)=0;//实现2个结点数据的比较 virtual void Show()=0;//输出一个结点的数据 virtual ~原创 2012-12-22 14:13:50 · 964 阅读 · 0 评论