• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++vector操作--往列表中添加或更新内容

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

有个列表,往里面添加内容,如果对象已存在,只更新其属性,否则添加新一项。

#include <iostream>
#include <string>
#include <vector>
using namespace std;
struct test {
    char s;
    int score;
};

void print_v1(vector<test> &res) {
    vector<test>::iterator it = res.begin();
    for (; it != res.end(); ++it) {
        cout << "[" << it->s << "," << it->score << "]" << endl;
    }
}

void add(vector<test> &res, const test i) {
    vector<test>::iterator it2 = res.begin();
    bool flag = false;
    for (; it2 != res.end(); ++it2) {
        if (it2->s == i.s) {
            it2->score += i.score;
            flag = true;
        }
    }
    if (!flag)
        res.push_back(i);
}

int main() {
    vector<test> res;
    struct test a1;
    a1.s = 'A';
    a1.score = 20;
    struct test a2;
    a2.s = 'B';
    a2.score = 40;
    struct test a3;
    a3.s = 'C';
    a3.score = 35;
    res.push_back(a1);
    res.push_back(a2);
    res.push_back(a3);

    print_v1(res);

    struct test i1;
    i1.s = 'D';
    i1.score = 55;
    
    struct test i2;
    i2.s = 'A';
    i2.score = 60;

    add(res, i1);
    add(res, i2);

    cout << "------------" << endl;
    print_v1(res);


    system("pause");
    return 0;
}

 运行结果:

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
【C语言】写一个函数,实现字符串内单词逆序发布时间:2022-07-13
下一篇:
计算方法(三)C#矩阵类库发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap