一:今天做poj上的3750那个题,用到了list的erase方法,提交之后总是报runtime error!纠结了好长时间。曾有一度怀疑过vector的erase和list的erase处理方式不一样。理论知识请参考也指针和悬浮指针:http://blog.csdn.net/u010700335/article/details/39831293 或 深拷贝和浅拷贝点击打开链接 http://blo...
分类:
编程语言 时间:
2014-10-14 12:14:38
阅读次数:
231
一:vector异常类 Myexcep.h
#include
#include
using namespace std;
class Myexcep
{
public:
Myexcep() :m_exnote("Get a exception ") {}
Myexcep(const string &other){m_exnote = other;}
...
分类:
其他好文 时间:
2014-10-09 03:03:08
阅读次数:
116