- 论坛徽章:
- 0
|
发下完整的测试代码吧,大伙看的清楚:
#include <iostream>
#include <string>
#include <map>
using namespace std;
//========================================================
typedef struct tagUKey
{
char a[10];
char b[20];
bool operator <(const struct tagUKey&ths) const
{
// 这里如何实现???
return (((strcmp(a,ths.a)<0)||((strcmp(a,ths.a)>0)&& (strcmp(b,ths.b)<0)))&& (strcmp(b,ths.b)<0));
}
} UKey;
map<UKey, int> gDat;
typedef map<UKey, int>::iterator Dat_It;
typedef map<UKey, int>::value_type Dat_Val;
//========================================================
// 初始化map
void init()
{
UKey s;
strcpy(s.a,"11");
strcpy(s.b,"4111");
gDat.insert(Dat_Val(s,1));
strcpy(s.a,"22");
strcpy(s.b,"4222");
gDat.insert(Dat_Val(s,2));
strcpy(s.a,"33");
strcpy(s.b,"4333");
gDat.insert(Dat_Val(s,3));
strcpy(s.a,"44");
strcpy(s.b,"4444");
gDat.insert(Dat_Val(s,4));
strcpy(s.a,"55");
strcpy(s.b,"4555");
gDat.insert(Dat_Val(s,5));
}
//========================================================
// 根据key值查找
void findKey(int nFlag,char *pInfo)
{
UKey s;
switch(nFlag)
{
case 0:
strcpy(s.a,pInfo);
break;
case 1:
strcpy(s.b,pInfo);
break;
}
Dat_It tmpIt;
tmpIt = gDat.find(s);
if (tmpIt != gDat.end())
printf("find. dat=%d\n",tmpIt->second);
else
printf("not find.\n");
}
//========================================================
int main(int argc, char **argv)
{
init();
findKey(0,"11");
findKey(1,"4111");
findKey(0,"22");
findKey(1,"4555");
return 0;
}
/*-------------------------------------------------------------
输出为:
not find. // 这里很奇怪,没找到。如何实现重载<,才好?
find. dat=1
find. dat=2
find. dat=5
-------------------------------------------------------------*/ |
|