前进的道路不是一帆风顺的,要随时迎接挑战,敢于战胜困难!

坚持一下,找人聊聊天,释放一些压力!

 

2010年8月10日

编写String类的构造函数,析构函数,赋值函数

摘要: #include <iostream>using namespace std;class String{public:String(const char* str=NULL);String(const String& other);~String(void);String & operator =(const String& other);const char*... 阅读全文

posted @ 2010-08-10 17:40 山径山精 阅读(475) 评论(0) 推荐(0) 编辑

设计包含min函数的栈(源码)

摘要: 采用两个双端队列实现,一个存数据,一个是辅助栈,存第一个栈的最小元素的地址,实现技巧在于辅助栈存放的是第一个栈的最小元素的地址,难度在于使用模板实现。#include <deque>#include <assert.h>#include <iostream>using namespace std;template <typename T>class ... 阅读全文

posted @ 2010-08-10 13:53 山径山精 阅读(1115) 评论(0) 推荐(0) 编辑

导航