快速學習stl

2021-07-04 02:12:07 字數 747 閱讀 3331



#include

#include

#include

#include

#include

using namespace std;

int main()

printf("%d\n",i);

}*/int n;

while (~scanf("%d", &n))

printf("%d\n", num);}}

} /*輸出語句是「cout」就是在學校學習qb的時候的語句"print",輸入語句是「cin」,就是qb中的「input」,其他的輸出語句如scanf和printf以後會給大家講一講。cin和cout中每輸出乙個物件前面都要分別加上「<<」和「>>」如輸入n和x的值,應是cin >> n >> x;而不是cin n,x; 和 cin >> n , x;輸出應是 cout << n << x; c++裡如果想要輸出一串字元,就可以直接寫成cout << "你想輸出的字元";c++裡的換行語句是endl;如cout << n << endl; 還可以寫成cour<< n;

cout<< endl;

#include

using namespace std;

int main()

{int n,m=0;//定義變數m和n,m的初始值是0

cin >> n;//輸入乙個n

cout << "hello,c++!"<< endl;//輸出"hello,c++!"後換行

cout <

快速排序,歸併,堆 ,STL

by morewindows include include include using namespace std 快速排序 void quick sort int s,int l,int r s i x quick sort s,l,i 1 遞迴呼叫 quick sort s,i 1,r 歸併排...

STL 學習資料

收集的一些stl的學習資料 什麼是stl?stl standard template library 即標準模板庫,是乙個具有工業強度的,高效的c 程式庫。它被容納於 c 標準程式庫 c standard library 中,是ansi iso c 標準中最新的也是極具革命性的一部分。該庫 包含了諸...

STL學習小記

2009 05 09 17 04 387人閱讀收藏 舉報stl standard template libarary 主要提供了三類工具 容器container,迭代器iterato,演算法algorithm.stl提供了兩類容器 序列容器 以線性序列方式組織物件 關聯容器 用關聯的鍵把物件組織在一...