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

溫馨提示×

C++ HashMap可以存儲自定義類型嗎

c++
小樊
83
2024-08-02 18:26:13
欄目: 云計算

是的,C++的HashMap可以存儲自定義類型。可以通過定義自定義類型的哈希函數和相等比較函數來實現,以確保HashMap可以正確地對自定義類型進行存儲和查找操作。以下是一個簡單的示例:

#include <iostream>
#include <unordered_map>

// 定義自定義類型
struct CustomType {
    int id;
    std::string name;

    bool operator==(const CustomType& other) const {
        return id == other.id && name == other.name;
    }
};

// 定義自定義類型的哈希函數
struct CustomTypeHash {
    std::size_t operator()(const CustomType& custom) const {
        return std::hash<int>()(custom.id) ^ (std::hash<std::string>()(custom.name) << 1);
    }
};

int main() {
    std::unordered_map<CustomType, int, CustomTypeHash> customMap;

    CustomType c1 = {1, "Alice"};
    CustomType c2 = {2, "Bob"};

    customMap[c1] = 10;
    customMap[c2] = 20;

    std::cout << "c1 value: " << customMap[c1] << std::endl;
    std::cout << "c2 value: " << customMap[c2] << std::endl;

    return 0;
}

在上面的示例中,我們定義了一個自定義類型CustomType,并定義了CustomTypeHash結構體來作為它的哈希函數。然后我們使用std::unordered_map來存儲CustomType類型的鍵值對。通過定義CustomType的相等比較函數和哈希函數,我們可以確保HashMap正確地對自定義類型進行操作。

0
襄汾县| 七台河市| 普格县| 江阴市| 千阳县| 高邑县| 常熟市| 洪泽县| 慈溪市| 车险| 南木林县| 桃园市| 眉山市| 沈阳市| 双城市| 清远市| 手游| 松滋市| 甘谷县| 宁津县| 定结县| 西乌珠穆沁旗| 澄江县| 海城市| 南京市| 齐河县| 汨罗市| 霞浦县| 孝昌县| 颍上县| 临清市| 南通市| 河间市| 松桃| 金堂县| 息烽县| 金溪县| 高邮市| 荃湾区| 阜康市| 平远县|