map的鍵使用自定義結構體
背景:
map的定義
template<class Key, class T, class Pred = less<Key>, class A = allocator<T> >
可見,map的定義是一個模板類,模板引數為Key,T,Pred,A,各引數的含義如下:
Key---------鍵
T------------值
Pred--------map用於比較鍵的類,這個類必須過載()操作符,在其中定義比較操作..(雖然比較怪,不是過載大於小於號,但的確是這樣定義的)
A------------記憶體分配
注:由於map是採用了紅黑樹,而紅黑樹在操作節點時都需要依賴於比較節點間的大小,所以鍵採用自定義結構體的條件就是得讓系統可以對其進行比較.可以通過兩種方法提供這種功能:
1. 為結構體過載<操作符
2. 不需要為結構體過載<操作符.但需要提供一個Pred類,且該類提供了operator()過載.實際上通過class Pred = less<Key>可以看出,map預設使用系統提供的less類.
以下為兩種方案的例子:
1.為自定義型別過載operator<,map的第三個引數為預設仿函式less<key>。
例子:
- #include <iostream>
- #include <map>
- #include <string>
- using namespace std;
- class test
- {
- public :
- bool operator<( const test& a) const ;
- //private:
- int nA;
- int nB;
- };
- bool test::operator<( const test& a) const
- {
- if ( this ->nA < a.nA)
- return true ;
- else
- {
-
if
(
this
->nA == a.nA &&
this
- return true ;
- else
- return false ;
- }
- }
- int main()
- {
- map<test, string> myTestDemo;
- test tA;
- tA.nA = 1;
- tA.nB = 1;
- test tB;
- tB.nA = 1;
- tB.nB = 2;
- myTestDemo.insert(pair<test, string>(tA, "first!" ));
- myTestDemo.insert(pair<test, string>(tB, "second!" ));
- map<test, string>::iterator myItr = myTestDemo.begin();
- cout << "itr begin test nA:" << myItr->first.nA << endl;
- cout << "itr begin test nB:" << myItr->first.nB << endl;
- cout << "itr begin test string:" << myItr->second << endl;
- return 1;
- }
特別注意: operator < 函式的詳細內容,一定要滿足strict weakly ordering,不能單純的返回false或true
可以參考:http://www.softwelt.com/Know/KnowDetail-113762.html
2.不使用map的第三個引數為預設仿函式less<key>,自己編寫一個比較仿函式。
- #include <iostream>
- #include <map>
- using namespace std;
- struct keyOfMap
- {
- int firstOfKey;
- int secondOfKey;
- };
- struct myMapFunctor
- {
- bool operator()( const keyOfMap& k1, const keyOfMap& k2) const
- {
- if (k1.firstOfKey < k2.firstOfKey)
- return true ;
- else
- return false ;
- }
- };
- int main()
- {
- map<keyOfMap, string, myMapFunctor> test;
- keyOfMap temp1;
- keyOfMap temp2;
- temp1.firstOfKey = 1;
- temp1.secondOfKey = 1;
- temp2.firstOfKey = 2;
- temp2.secondOfKey = 2;
- test.insert(make_pair<keyOfMap, string>(temp1, "first" ));
- test.insert(make_pair<keyOfMap, string>(temp2, "second" ));
- map<keyOfMap, string, myMapFunctor>::iterator begin = test.begin();
- cout << begin->first.firstOfKey << begin->first.secondOfKey << begin->second << endl;
- return 1;
- }
相關推薦
map的鍵使用自定義結構體
背景: map的定義 template<class Key, class T, class Pred = less<Key>, class A = allocator<T> > 可見,map的定義是一個模板類,模板引數為Key,
自定義結構體做為map裡面的key的寫法
其中一種寫法: struct hook_info { string lib_name; string fun_name; int param_count; bool bIATHook; hook_info(char *lib
自定義結構體的對齊問題
一、跨平臺通用資料型別 之前的一篇部落格Linux資料型別(通用移植),已經自定義嘗試解決了資料通用型別問題。 這裡通過原始碼進行分析,利用原始碼進行解決問題。在<stdint.h>中我們發現: typedef signed char int8_t; typedef
自定義結構體及初始化
自定義結構體及初始化,以及標頭檔案先宣告巨集,然後宣告結構體 <pre name="code" class="cpp">/********************** macro definition **********************/ #ifndef CVALGO_
C++ 自定義結構體的Priority Queue
比較函式return true 意味著排序需要交換。 #include <iostream> #include <queue> #include <vector> #include <algorithm> using namespace
利用qt 訊號槽傳遞自定義結構體--藉助QVariant
在前面的部落格裡,我介紹了利用Q_DECLARE_METATYPE和qRegsterMetaType來傳遞自定義的結構體。但是這樣做有個缺點:qRegisterMetaType()只能在main()函式裡才能發揮作用。https://blog.csdn.net/Kelvin_Yan/article/
QT訊號槽傳遞自定義結構體
QT的訊號槽可以傳遞int, short, double等c語言的常用型別的變數,也可以傳遞如QImage之類的QT支援 的型別。但是如何傳遞一個程式設計師自定義的結構體? 1)在定義結構體之後,要呼叫Q_DECLARE_METATYPE,向QT宣告這個結構體 2)在main.cpp 中,用
[UE4]自定義結構體、類、資料表
自定義資料表: #pragma once #include "CoreMinimal.h" #include "Engine/UserDefinedStruct.h" #include "Components/CanvasPanel.h" #include "Blueprint/UserW
[UE4]自定義結構體、類、數據表
png table 小地圖 比例 pub 地圖 sse 面板 gpa 自定義數據表: #pragma once #include "CoreMinimal.h" #include "Engine/UserDefinedStruct.h" #include "
Solidity學習::(10)自定義結構體
自定義結構體 定義 跟其他語言類似 //學生 struct Student{ string name; int num; } //班級 struct Class{ string clsName; //學生的列表
Linux核心dev_set_drvdata()和dev_get_drvdata()儲存自定義結構體用法
定義位置:kernel/msm-3.18/include/linux/device.h static inline void dev_set_drvdata(struct device *dev, void *data){ dev->driver_data = data; } stat
Solidity的自定義結構體深入詳解
一.結構體定義 結構體,Solidity中的自定義型別。我們可以使用Solidity的關鍵字struct來進行自定義。結構體內可以包含字串,整型等基本資料型別,以及陣列,對映,結構體等複雜型別。陣列,對映,結構體也支援自定義的結構體。我們來看一個自定義結構體的定義: pragma solidit
C/C++動態自定義結構體陣列例項鍛鍊-學生成績排序
/************************************************************************/ /* 本程式是對動態記憶體、動態陣列、結構體、函式的綜合應用。 */ /***********************
QT:用QSet儲存自定義結構體的問題
前幾天要用QSet作為儲存一個自定義的結構體(就像下面這個程式一樣),結果死活不成功。。。後來還跑到論壇上問人了,丟臉丟大了。。。 事先說明:以下這個例子是錯誤的 [cpp] view plaincopyprint? #include <QtCore> struct node
c++ map 使用自定義結構做關鍵字
map在STL中的定義 template <class Key, class T, class Compare = less<Key>, class Alloc = alloc> 第一個引數Key是關鍵字型別 第二個引數T是值型別 第三個引數Com
iOS 自定義結構體、結構體轉換成物件
1、新建一個頭檔案,如下程式碼: #ifndef Header_h #define Header_h struct MyStruce{ char *name;//(指標形式) char *address; CGFloat age;
關於Go語言,自定義結構體標籤的一個妙用.
在Go中首字母大小寫,決定著這此變數是否能被外部呼叫, 例如:在使用標準庫的json編碼自定一的結構的時候: <pre style="margin-top: 0px; margin-bottom: 0px;"><span style=" font-weig
再談:自定義結構體的對齊問題之__attribute__ ((packed))方法
問題來源: 我們在程式開發過程中往往會遇到這樣的問題:以某種資料格式寫入,再以此格式讀出,特別是socket通訊中,通常會遇到資料錯位問題,這就是資料結構的對齊的問題。為了讓我們的資料結構以
使用STL去除std::vector自定義結構體重複項
最近搞了一個小東西要去除一個vector中重複的項。是這樣的:我用組播搜尋裝置,得到裝置IP資訊、版本號資訊,等,但有時會接收到多個相同IP裝置的資訊,因此要過濾掉重複的IP。我使用vector儲存每臺裝置資訊,包括IP、版本號,因此需要使用結構體。另外,要對這些裝置IP進
自定義結構體排序
#include <cstdio> #include <iostream> #include <iterator> #include <cstring>