C++ STL标准库 《map容器详解》

简介: C++ STL标准库 《map容器详解》

List介绍 

  Lists将元素按顺序储存在链表中。与 向量(vectors)相比, 它允许快速的插入和删除,但是随机访问却比较慢。

assign()                    // 给list赋值 
back()                      // 返回最后一个元素 
begin()             // 返回指向第一个元素的迭代器 
clear()             // 删除所有元素 
empty()              // 如果list是空的则返回true 
end()               // 返回末尾的迭代器 
erase()               // 删除一个元素 
front()             // 返回第一个元素 
insert()              // 插入一个元素到list中 

max_size()               // 返回list能容纳的最大元素数量 
merge()                 // 合并两个list 
pop_back()               // 删除最后一个元素 
pop_front()              // 删除第一个元素 
push_back()              // 在list的末尾添加一个元素 
push_front()             // 在list的头部添加一个元素 

rbegin()                // 返回指向第一个元素的逆向迭代器 
remove()                // 从list删除元素 
remove_if()              // 按指定条件删除元素 
rend()                  // 指向list末尾的逆向迭代器 
resize()                 // 改变list的大小 
reverse()                // 把list的元素倒转 
size()                  // 返回list中的元素个数 
sort()                   // 给list排序 
splice()                // 合并两个list 
swap()                  // 交换两个list 
unique()                 // 删除list中重复的元素
get_allocator()           // 返回list的配置器

实例分析1:

#include <iostream> 
#include <list> 
#include <numeric> 
#include <algorithm> 
using namespace std;

//创建一个list容器的实例LISTINT 
typedef list<int> LISTINT;
//创建一个list容器的实例LISTCHAR 
typedef list<int> LISTCHAR;

void main()
{
    //用list容器处理整型数据  
    //用LISTINT创建一个名为listOne的list对象 
    LISTINT listOne;
    //声明i为迭代器 
    LISTINT::iterator i;

    //从前面向listOne容器中添加数据 
    listOne.push_front(2);
    listOne.push_front(1);

    //从后面向listOne容器中添加数据 
    listOne.push_back(3);
    listOne.push_back(4);

    //从前向后显示listOne中的数据 
    cout << "listOne.begin()--- listOne.end():" << endl;
    for (i = listOne.begin(); i != listOne.end(); ++i)
        cout << *i << " ";
    cout << endl;

    //从后向后显示listOne中的数据 
    LISTINT::reverse_iterator ir;
    cout << "listOne.rbegin()---listOne.rend():" << endl;
    for (ir = listOne.rbegin(); ir != listOne.rend(); ir++) {
        cout << *ir << " ";
    }
    cout << endl;

    //使用STL的accumulate(累加)算法 
    int result = accumulate(listOne.begin(), listOne.end(), 0);
    cout << "Sum=" << result << endl;
    cout << "------------------" << endl;

    //-------------------------- 
    //用list容器处理字符型数据 
    //-------------------------- 

    //用LISTCHAR创建一个名为listOne的list对象 
    LISTCHAR listTwo;
    //声明i为迭代器 
    LISTCHAR::iterator j;

    //从前面向listTwo容器中添加数据 
    listTwo.push_front('A');
    listTwo.push_front('B');

    //从后面向listTwo容器中添加数据 
    listTwo.push_back('x');
    listTwo.push_back('y');

    //从前向后显示listTwo中的数据 
    cout << "listTwo.begin()---listTwo.end():" << endl;
    for (j = listTwo.begin(); j != listTwo.end(); ++j)
        cout << char(*j) << " ";
    cout << endl;

    //使用STL的max_element算法求listTwo中的最大元素并显示 
    j = max_element(listTwo.begin(), listTwo.end());
    cout << "The maximum element in listTwo is: " << char(*j) << endl;
}

运行结果:

image.png


实例分析2:

#include <iostream> 
#include <list> 

using namespace std;
typedef list<int> INTLIST;

//从前向后显示list队列的全部元素 
void put_list(INTLIST list, char* name)
{
    INTLIST::iterator plist;

    cout << "The contents of " << name << " : ";
    for (plist = list.begin(); plist != list.end(); plist++)
        cout << *plist << " ";
    cout << endl;
}

//测试list容器的功能 
void main(void)
{
    //list1对象初始为空 
    INTLIST list1;
    //list2对象最初有10个值为6的元素 
    INTLIST list2(10, 6);
    //list3对象最初有3个值为6的元素 
    INTLIST list3(list2.begin(), --list2.end());

    //声明一个名为i的双向迭代器 
    INTLIST::iterator i;

    //从前向后显示各list对象的元素 
    put_list(list1, (char*)("list1"));
    put_list(list2, (char*)("list2"));
    put_list(list3, (char*)("list3"));

    //从list1序列后面添加两个元素 
    list1.push_back(2);
    list1.push_back(4);
    cout << "list1.push_back(2) and list1.push_back(4):" << endl;
    put_list(list1, (char*)("list1"));

    //从list1序列前面添加两个元素 
    list1.push_front(5);
    list1.push_front(7);
    cout << "list1.push_front(5) and list1.push_front(7):" << endl;
    put_list(list1, (char*)("list1"));

    //在list1序列中间插入数据 
    list1.insert(++list1.begin(), 3, 9);
    cout << "list1.insert(list1.begin()+1,3,9):" << endl;
    put_list(list1, (char*)("list1"));

    //测试引用类函数 
    cout << "list1.front()=" << list1.front() << endl;
    cout << "list1.back()=" << list1.back() << endl;

    //从list1序列的前后各移去一个元素 
    list1.pop_front();
    list1.pop_back();
    cout << "list1.pop_front() and list1.pop_back():" << endl;
    put_list(list1, (char*)("list1"));

    //清除list1中的第2个元素 
    list1.erase(++list1.begin());
    cout << "list1.erase(++list1.begin()):" << endl;
    put_list(list1, (char*)("list1"));

    //对list2赋值并显示 
    list2.assign(8, 1);
    cout << "list2.assign(8,1):" << endl;
    put_list(list2, (char*)("list2"));

    //显示序列的状态信息 
    cout << "list1.max_size(): " << list1.max_size() << endl;
    cout << "list1.size(): " << list1.size() << endl;
    cout << "list1.empty(): " << list1.empty() << endl;

    //list序列容器的运算 
    put_list(list1, (char*)("list1"));
    put_list(list3, (char*)("list3"));
    cout << "list1>list3: " << (list1 > list3) << endl;
    cout << "list1<list3: " << (list1 < list3) << endl;

    //对list1容器排序 
    list1.sort();
    put_list(list1, (char*)("list1"));

    //结合处理 
    list1.splice(++list1.begin(), list3);
    put_list(list1, (char*)("list1"));
    put_list(list3, (char*)("list3"));
}

运行结果:

image.png











相关文章
|
4月前
|
API C++ Windows
Visual C++运行库、.NET Framework和DirectX运行库的作用及常见问题解决方案,涵盖MSVCP140.dll丢失、0xc000007b错误等典型故障的修复方法
本文介绍Visual C++运行库、.NET Framework和DirectX运行库的作用及常见问题解决方案,涵盖MSVCP140.dll丢失、0xc000007b错误等典型故障的修复方法,提供官方下载链接与系统修复工具使用指南。
978 2
|
4月前
|
缓存 算法 程序员
C++STL底层原理:探秘标准模板库的内部机制
🌟蒋星熠Jaxonic带你深入STL底层:从容器内存管理到红黑树、哈希表,剖析迭代器、算法与分配器核心机制,揭秘C++标准库的高效设计哲学与性能优化实践。
C++STL底层原理:探秘标准模板库的内部机制
|
4月前
|
Ubuntu API C++
C++标准库、Windows API及Ubuntu API的综合应用
总之,C++标准库、Windows API和Ubuntu API的综合应用是一项挑战性较大的任务,需要开发者具备跨平台编程的深入知识和丰富经验。通过合理的架构设计和有效的工具选择,可以在不同的操作系统平台上高效地开发和部署应用程序。
208 11
|
4月前
|
IDE 编译器 开发工具
msvcp100.dll,msvcp120.dll,msvcp140.dll,Microsoft Visual C++ 2015 Redistributable,Visual C++ 运行库安装
MSVC是Windows下C/C++开发核心工具,集成编译器、链接器与调试器,配合Visual Studio使用。其运行时库(如msvcp140.dll)为程序提供基础函数支持,常因缺失导致软件无法运行。通过安装对应版本的Microsoft Visual C++ Redistributable可解决此类问题,广泛应用于桌面软件、游戏及系统级开发。
535 2
|
5月前
|
并行计算 C++ Windows
|
11月前
|
编译器 C++ 容器
【c++丨STL】基于红黑树模拟实现set和map(附源码)
本文基于红黑树的实现,模拟了STL中的`set`和`map`容器。通过封装同一棵红黑树并进行适配修改,实现了两种容器的功能。主要步骤包括:1) 修改红黑树节点结构以支持不同数据类型;2) 使用仿函数适配键值比较逻辑;3) 实现双向迭代器支持遍历操作;4) 封装`insert`、`find`等接口,并为`map`实现`operator[]`。最终,通过测试代码验证了功能的正确性。此实现减少了代码冗余,展示了模板与仿函数的强大灵活性。
305 2
|
11月前
|
存储 算法 C++
【c++丨STL】map/multimap的使用
本文详细介绍了STL关联式容器中的`map`和`multimap`的使用方法。`map`基于红黑树实现,内部元素按键自动升序排列,存储键值对,支持通过键访问或修改值;而`multimap`允许存在重复键。文章从构造函数、迭代器、容量接口、元素访问接口、增删操作到其他操作接口全面解析了`map`的功能,并通过实例演示了如何用`map`统计字符串数组中各元素的出现次数。最后对比了`map`与`set`的区别,强调了`map`在处理键值关系时的优势。
603 73
|
8月前
|
安全 Java 数据库连接
让我们讲解一下 Map 集合遍历的方式
我是小假 期待与你的下一次相遇 ~
319 43
|
11月前
使用 entrySet 遍历 Map 类集合 KV
使用 entrySet 遍历 Map 类集合 KV