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

c++ list容器基本用法

时间:2019-12-27 15:18:30      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:==   iterator   ++   using   new   color   ===   tor   mamicode   

  • 基本用法
#include<iostream>
#include<time.h>
#include<vector>
#include<list>
using namespace std;
void main()
{
    int a[] = {33,44,55,66,77,88};
    int i;
    list<int> lst(a,a+5);
    list<int>::iterator it;//list只能用迭代器指针循环遍历
    cout << endl;
    for (it=lst.begin();it!=lst.end();++it)
    {
        cout << *it<< "    ";
    }
    cout << endl;
    list<int> lst2(5,0);
    lst2.assign(lst.begin(),lst.end());
    for (it=lst2.begin();it!=lst2.end();it++)
    {
        cout << *it << "     ";
    }
    list<int> lst3(6,8);
    int newnum[] = {10,12,24,36,46,54,99.88,111};
    lst3.assign(newnum, newnum + 4);
    cout << endl;
    for (it=lst3.begin();it!=lst3.end();it++)
    {
        cout << *it << "*******";
    }
    lst3.assign(&newnum[0], &newnum[3]);
    cout << endl;
    for (it = lst3.begin(); it != lst3.end(); it++)
    {
        cout << *it << "======";
    }
}

输出结果:

技术图片

 

  • 利用迭代器指针增/删元素
#include<iostream>
#include<time.h>
#include<vector>
#include<list>
using namespace std;
void main()
{
    list<int>lst3;
    int i;
    list<int>::iterator it;
    int newnum[] = {10,12,24,36,46,54,99.88,111};
    for (i = 0; i < 5; i++)
    {
        lst3.push_back(newnum[i]);
    }
    //lst3.assign(&newnum[0], &newnum[3]);
    it = lst3.begin();
    it++;
    lst3.insert(it,2,88);
    --it;
    lst3.insert(it, 666);
    cout << endl;
    for (it = lst3.begin(); it != lst3.end(); it++)
    {
        cout << *it << "     ";
    }
}

输出结果:

技术图片

c++ list容器基本用法

标签:==   iterator   ++   using   new   color   ===   tor   mamicode   

原文地址:https://www.cnblogs.com/saintdingspage/p/12107313.html

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