鱼C论坛

 找回密码
 立即注册
查看: 2625|回复: 0

[技术交流] C++上天之路第四十七课到四十八课(容器和算法)

[复制链接]
发表于 2017-7-19 16:45:22 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
第四十七课到四十八课(容器和算法)
        容器:像栈那样定义好的数据结构,前辈们集合放在了C++标准库中
        如:vector(向量)就是一个可以无限延长的数组:std::vector<type> names
        用size可以查看当前的长度,push_back(xxx)可以添加东西

        迭代器:对容器里的内容进行一个遍历。
        C++标准库提供的迭代器iterator,相当于一个特殊的指针,对所有的容器都可以用
        std::vector<std::string>::iterator  iter = names.begin();
       

        c++算法头文件<algorithm>


47:
#include<iostream>
#include<string>
#include<vector>


void main()
{
        std::vector<std::string> names;

        names.push_back("第一个");
        names.push_back("第二个");
        names.push_back("第三个");

        for(int i=0; i< names.size(); i++)
        {
                std::cout << names[i] << '\n';
        }
}

48:
1.
#include<iostream>
#include<string>
#include<vector>


void main()
{
        std::vector<std::string> names;

        names.push_back("第一个");
        names.push_back("第二个");
        names.push_back("第三个");

        std::vector<std::string>::iterator iter = names.begin();

        while( iter != names.end() )
        {
                std::cout << *iter << "\n";
                iter++;
        }
}
#include<iostream>
#include<vector>
#include<string>
#include<algorithm>

void  main()
{
        std::vector<std::string> names;
        
        names.push_back("Larry");
        names.push_back("Barry");
        names.push_back("Lilei");
        names.push_back("Candy");
        names.push_back("Xiaoqin");
        names.push_back("Mark");
        names.push_back("Siple");

        std::sort(names.begin(),names.end());

        std::vector<std::string>::iterator iter = names.begin();

        while( iter != names.end() )
        {
                std::cout << *iter << '\n';
                iter++;
        }

}

评分

参与人数 1鱼币 +1 收起 理由
小甲鱼 + 1

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 17:47

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表