第十五周專案1 閱讀程式,領會STL用法 1

2021-07-13 01:28:13 字數 700 閱讀 7975

問題及**:

*檔名稱:main.cpp

*作 者:崔青青

*完成日期:2023年6月3日

*版 本 號:v1.0

*問題描述:

*輸入描述:無

*輸出描述:無

*/#include#include#include#includeusing namespace std;

int main()

{ setstrset;

strset.insert("cantaloupes");

strset.insert("grapes");

strset.insert("orange");

strset.insert("banana");

strset.insert("grapes");

copy(strset.begin(),strset.end(),ostream_iterator(cout," "));

cout<

執行結果:

知識點總結:

先建立set的物件strset,然後執行插入操作,因為set集合元素無重複,並且會按照大小排序,所以輸出結果如圖所示。

學習心得:

從這個程式中,我們可以了解到stl的一般用法。

第十五周專案1 閱讀程式,領會STL用法 3

問題及 檔名稱 main.cpp 作 者 崔青青 完成日期 2016年6月3日 版 本 號 v1.0 問題描述 輸入描述 無 輸出描述 無 include include include include include includeusing namespace std int main int ...

第十五周 閱讀程式(1)

檔名稱 test.cpp 作 者 呼亞萍 完成日期 2015年6月15日 版 本 號 v1.0 程式輸入 相應的程式 程式輸出 對應得結果 include include include using namespace std int main int a ofstream outfile f1.d...

第十五周專案二閱讀程式(1)

問題及 檔名稱 test.cpp 作 者 郝俊宇 完成日期 2014年 12 月 4 日 版 本 號 v1.0 問題描述 閱讀下面的程式,先寫出其執行結果,再執行對比。支招1 按課堂上老師講課的方式,將變數對應記憶體的 框子 畫出來,用大腦當cpu,寫出變數的變化過程 支招2 單步執行程式,在監視 ...