暑假前专题题解---数据结构---E

本文介绍了一个基于STL的简单商品价格管理系统。利用C++标准模板库中的map和set,实现对商品名称和价格的增删改查操作。通过不同选项可以添加新的商品及其价格、删除已存在的商品、修改商品价格以及查询最贵或最便宜的商品。
摘要由CSDN通过智能技术生成


 

简单的模拟,用stl即可,pair在第一个值相等情况下会对第二个排序,自己写struct ,重载运算符也可;

#include <bits/stdc++.h>
using namespace std;
map<string, int> mp;
set<pair<int, string> > s;
int main(){
    int n,opt,pric;
    string name;
    scanf("%d",&n);
    for (int i=0; i<n; i++) {
        scanf("%d",&opt);
        if (opt == 1){
            cin >> name >> pric;
            if (mp.count(name)) continue;
            mp[name] = pric; s.insert(make_pair(pric, name));
        }else if (opt == 2){
            cin >> name;
            if (mp.count(name)){
                s.erase(make_pair(mp[name], name));
                mp.erase(name);
            }
        }else if (opt == 3){
            cin >> name >> pric;
            if (mp.count(name)){
                s.erase(make_pair(mp[name], name));
                mp[name] = pric;
                s.insert(make_pair(pric, name));
            }
        }else if (opt == 4){
            cin >> pric;
            if (s.empty()) continue;
            if (pric == 1){
                set<pair<int, string> >::iterator it = s.begin();
                cout << it->second << endl;
            }else if (pric == 2){
                set<pair<int, string> >::iterator it = s.end(); it--;
                cout << it->second << endl;
            }
        }
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值