全部博文(116)
分类:
2005-03-28 11:14:05
采用List容器类,写的第二个STL演示程序.之后准备往其中填入自己的对象.
#include
#include
#include
namespace std {} using namespace std;
int main()
{
string *myword;
myword=new string("List is:");
cout<< myword->c_str()<
list
L.push_back(0);
L.push_front(1);
L.insert(++L.begin(), 2);
copy(L.begin(), L.end(), ostream_iterator
cout<
}