码迷,mamicode.com
首页 > 编程语言 > 详细

c++ map 使用

时间:2017-01-06 08:01:40      阅读:318      评论:0      收藏:0      [点我收藏+]

标签:include   empty   添加   div   value   member   bsp   count   pre   

. 包含头文件:

1 #include <map>

2. 构造函数:

1   std::map<char,int> first;
2   first[a]=10;
3   first[b]=30;
4   first[c]=50;
5   first[d]=70;
6   std::map<char,int> second (first.begin(),first.end());
7   std::map<char,int> third (second);

3. 添加元素:

4. 查找元素:

5. 删除元素:

6. member functions:

    map::at
    map::begin
    map::cbegin
    map::cend
    map::clear
    map::count
    map::crbegin
    map::crend
    map::emplace
    map::emplace_hint
    map::empty
    map::end
    map::equal_range
    map::erase
    map::find
    map::get_allocator
    map::insert
    map::key_comp
    map::lower_bound
    map::max_size
    map::operator=
    map::operator[]
    map::rbegin
    map::rend
    map::size
    map::swap
    map::upper_bound
    map::value_comp

c++ map 使用

标签:include   empty   添加   div   value   member   bsp   count   pre   

原文地址:http://www.cnblogs.com/sarah-zhang/p/6254841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!