摘要: 1、今天任务 STL的vector、deque、list 单例设计模式 数据结构-树,链表的相关编程 2、++操作符重载 #include using namespace std; class A { private: int a; public: A(){a=0;} void operator++() {a+=1;} vo... 阅读全文
posted @ 2014-10-30 15:18 yexuannan 阅读(113) 评论(0) 推荐(0) 编辑