91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c++ std模板編程怎樣做

c++
小樊
81
2024-11-15 14:29:01
欄目: 編程語言

C++的STL(Standard Template Library,標準模板庫)是一個強大的工具集,它提供了許多模板類和函數,用于處理各種數據結構和算法。模板編程是一種使用模板來編寫可重用代碼的方法,它允許你編寫與數據類型無關的代碼。

以下是一些C++ STL中常見的模板編程示例:

  1. 向量(Vector)
#include <iostream>
#include <vector>

int main() {
    std::vector<int> vec = {1, 2, 3, 4, 5};

    for (int i = 0; i < vec.size(); ++i) {
        std::cout << vec[i] << " ";
    }

    return 0;
}
  1. 列表(List)
#include <iostream>
#include <list>

int main() {
    std::list<int> lst = {1, 2, 3, 4, 5};

    for (int i = 0; i < lst.size(); ++i) {
        std::cout << lst.at(i) << " ";
    }

    return 0;
}
  1. 排序(Sort)
#include <iostream>
#include <algorithm>

bool compare(int a, int b) {
    return a < b;
}

int main() {
    std::vector<int> vec = {5, 3, 1, 4, 2};

    std::sort(vec.begin(), vec.end(), compare);

    for (int i = 0; i < vec.size(); ++i) {
        std::cout << vec[i] << " ";
    }

    return 0;
}
  1. 查找(Find)
#include <iostream>
#include <algorithm>

int main() {
    std::vector<int> vec = {5, 3, 1, 4, 2};

    int target = 3;
    auto it = std::find(vec.begin(), vec.end(), target);

    if (it != vec.end()) {
        std::cout << "Found " << *it << std::endl;
    } else {
        std::cout << "Not found" << std::endl;
    }

    return 0;
}
  1. 容器適配器(Container Adapters)

C++ STL還提供了一些容器適配器,如stack(棧)、queue(隊列)和priority_queue(優先隊列),它們都是基于其他STL容器(如dequelistvector)實現的。

#include <iostream>
#include <stack>

int main() {
    std::stack<int> stk;

    stk.push(1);
    stk.push(2);
    stk.push(3);

    while (!stk.empty()) {
        std::cout << stk.top() << " ";
        stk.pop();
    }

    return 0;
}

這些示例展示了C++ STL中的一些基本模板編程技巧。要充分利用STL的強大功能,建議你閱讀C++標準文檔和相關教程,了解更多關于模板編程的知識。

0
安塞县| 勃利县| 平凉市| 招远市| 开原市| 津南区| 定日县| 永城市| 沧源| 秭归县| 藁城市| 邵东县| 五家渠市| 桓台县| 武定县| 方正县| 南江县| 区。| 潞城市| 昌平区| 东平县| 邻水| 通江县| 岑溪市| 新密市| 东方市| 深泽县| 融水| 新宾| 田阳县| 抚松县| 山阳县| 美姑县| 延吉市| 大石桥市| 华阴市| 远安县| 柏乡县| 青神县| 定州市| 桂阳县|