C++ 笔记5:LIST 和MAP

本文介绍了C++中list和map的基本用法,包括如何定义、赋值及输出。通过实例展示了list容器的元素添加与迭代输出,以及map的插入与访问操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

代码:

#include <iostream>
#include <list>
#include <string>
#include <map>

using namespace std;

int main(int argc, const char * argv[]) {
    
    list<string> myList;
    myList.push_back("shunquan");
    myList.push_back("james");
    for (list<string>::iterator it = myList.begin(); it!=myList.end(); it++) {
        cout<<*it<<"\n";
    }
    
    map<string,string> m;
    m.insert(pair<string, string>("hello", "hello shunquan"));
    m.insert(pair<string, string>("name","shunquan"));
    cout <<m.at("name")<<"\n";
    cout <<m["hello"]<<"\n";
    return 0;
}

1. list string map 使用前要include 相应的库文件

2. 使用 using namespace std 避免重复输入 std::

3. list 是如何定义的,如何赋值的,如何输出的

4. map 如何定义,如何赋值,如何输出(2种方式)




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值