作业介绍
双端队列
deque<int> que;//创建一个双端队列 que
队名.push_front(5);//向前插入5
队名.push_back(4);//向后插入4
队名.pop_back();//删除队尾
队名.pop_front();//删除队头
队名.front();//查看队头
队名.back();//查看队尾
队名.size();//队列元素个数
队名.empty();//队列是否为空
!队名.empty();//队列不为空
//键值对的遍历
map<int,int> mp;
mp[1]=3;
mp[2]=1;
mp[4]=2;
mp[6]=6;
mp[3]=7;
mp.count(x);//返回x作为键出现的次数
for(auto it = mp.begin();it!=mp.end();it++)
{
cout << it->first << " " << it->second << endl;
}
- 状态
- 已结束
- 题目
- 6
- 开始时间
- 2024-6-1 0:00
- 截止时间
- 2024-7-31 23:59
- 可延期
- 24 小时