博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++如何实现哈希数据结构——map Library
阅读量:5946 次
发布时间:2019-06-19

本文共 945 字,大约阅读时间需要 3 分钟。

C++ 的常用库

map Library

 

简单用法如下:

 
typedef pair
value_type;

Iterators of a map container point to elements of this value_type. Thus, for an iterator called it that points to an element of a map, its key and mapped value can be accessed respectively with:

1
2
3
4
map
::iterator it;(*it).first; // the key value (of type Key)(*it).second; // the mapped value (of type T)(*it); // the "element value" (of type pair
)

Naturally, any other direct access operator, such as -> or [] can be used, for example:

1
2
it->first;               // same as (*it).first   (the key value)it->second;              // same as (*it).second  (the mapped value)

 

 

举例:

 

#include   <map>

using   namespace   std;
        map <String,TEdit*>     map1;
        map1[ "Edit1 "]=Edit1;
        map1[ "Edit2 "]=Edit2;
        map1[ "Edit1 "]-> Text= "aaaaaa ";
        map1[ "Edit2 "]-> Text= "bbbbbb ";

 

转载地址:http://wjbxx.baihongyu.com/

你可能感兴趣的文章
计算机网络术语总结4
查看>>
新手小白 python之路 Day3 (string 常用方法)
查看>>
soapUI的简单使用(webservice接口功能测试)
查看>>
框架 Hibernate
查看>>
python-while循环
查看>>
手机端上传图片及java后台接收和ajaxForm提交
查看>>
【MSDN 目录】C#编程指南、C#教程、ASP.NET参考、ASP.NET 4、.NET Framework类库
查看>>
jquery 怎么触发select的change事件
查看>>
angularjs指令(二)
查看>>
<气场>读书笔记
查看>>
领域驱动设计,构建简单的新闻系统,20分钟够吗?
查看>>
web安全问题分析与防御总结
查看>>
React 组件通信之 React context
查看>>
Linux下通过配置Crontab实现进程守护
查看>>
ios 打包上传Appstore 时报的错误 90101 90149
查看>>
Oracle推出轻量级Java微服务框架Helidon
查看>>
密码概述
查看>>
jQuery的技巧01
查看>>
基于泛型实现的ibatis通用分页查询
查看>>
gopacket 使用
查看>>