C++ STL

2021-01-25 16:15

阅读:646

标签:begin   div   nta   into   using   set   second   contain   header   

目录
  • 遍历
    • set遍历
    • map遍历

遍历

set遍历

#include 
#include
using namespace std;
int main(){
    int numList[6]={1,2,2,3,3,3};
    //1.set add
    set numSet;
    for(int i=0;i::iterator it=numSet.begin() ;it!=numSet.end();it++)
    {
        cout

map遍历

#include 
#include 
using namespace std;

int main(){
    map m;
    for (int i = 0; i ::iterator iter;
    iter = m.begin();
    while(iter != m.end()){
        cout first second first second 

C++ STL

标签:begin   div   nta   into   using   set   second   contain   header   

原文地址:https://www.cnblogs.com/houzm/p/12860348.html


评论


亲,登录后才可以留言!