中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

The study for the template

發布時間:2020-07-14 21:25:42 來源:網絡 閱讀:212 作者:神跡難覓 欄目:編程語言

/*冒泡排序.cpp---study for the template*/

#include<iostream>

using namespace std;

template <typename ElementType>//關鍵

/*ElementType max(ElementType a, ElementType b){

return a > b ? a : b;

}*/

void SortBuble(ElementType* a,int size){//from little to big;

int work = 0;

ElementType temp;

for (int i = 0; i < size; i++){

for (int j = size - 1; j>=i; j--){

if (a[j] < a[j - 1]){

temp = a[j];

a[j] = a[j-1];

a[j-1] = temp;

work = 1;

}

}

if (work == 0) break;

}

}

int main(){

cout.setf(ios_base::showpoint);

cout.precision(3);

/*cout << "max=" << max(5.0, 6.0)<<endl;

cout << "max=" << max(5, 6) << endl;

cout << "max=" << max('a', 'b') << endl;*/

int a = 3;//不用中間量交換兩值

int b = 4;

cout << "a=" << a << "b=" << b << endl;

a = a - b;

b = a + b;

a = b - a;

cout << "a=" << a << "b=" << b << endl;

double s[10] = { 2.2, 3.5, 5.2, 6.25, 4.2, 8, 7.7, 2.8, 1, 15 };

SortBuble(s, 10);

for (int i = 0; i < 10; i++){ cout << s[i] << endl; }

system("pause");

return 0;

}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

赤壁市| 井陉县| 越西县| 巴林左旗| 泽普县| 林西县| 大丰市| 福建省| 嘉定区| 鄂伦春自治旗| 临江市| 宝坻区| 峨眉山市| 苏州市| 永昌县| 蕉岭县| 抚顺县| 云阳县| 淮北市| 桂阳县| 宜兰县| 准格尔旗| 安阳县| 彰化市| 阿克| 庄河市| 阜新市| 大安市| 兴国县| 淅川县| 大渡口区| 商洛市| 左贡县| 芒康县| 潼南县| 邹平县| 安徽省| 长子县| 石棉县| 长垣县| 曲周县|