?? chapter5-15.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 + -