⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chapter5-15.cpp

📁 STL程序员开发指南源码
💻 CPP
字号:
//文件名:CHAPTER5-15.cpp
#include <iostream>
#include "SLIST"
#include <functional>
using namespace std;
int main() 
{
  SLIST<int> L;
  L.push_front(0);
  L.push_front(1);
  //L.insert_after(L.begin(), 2);
  copy(L.begin(), L.end(),ostream_iterator<int>(cout, " "));  // The output is 1 2 0
  cout << endl;
  SLIST<int>::iterator back = L.end();
  L.push_front( 3); 
  L.push_front(4);
  L.push_front(5);
  copy(L.begin(), L.end(),ostream_iterator<int>(cout, " "));  // The output is 1 2 0 3 4 5
  cout << endl;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -