c_cpp 遍历MAP
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 遍历MAP相关的知识,希望对你有一定的参考价值。
#include <map>
...
std::map<std::string, int>::const_iterator it = m.begin();
while (it != m.end())
{
it->first;
it->second;
++it;
}
//! clear map memory
std::map<unsigned int, CDeviceContext *> m_mapDevices;
for (auto it = m_mapDevices.begin(); it != m_mapDevices.end();) {
delete it->second, it->second = nullptr;
m_mapDevices.erase(it++);
}
以上是关于c_cpp 遍历MAP的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp map.cpp
c_cpp 置换遍历索引
c_cpp BST实施和遍历
c_cpp 94.二叉树Inorder遍历
c_cpp 144.二叉树预订遍历
c_cpp 广度优先遍历的.cpp