#C++初学记录(STL容器以及迭代器)
STL初步
提交ACM会TLE /仅以学习STL与迭代器使用
C. Cards Sorting
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Vasily has a deck of cards consisting of n cards. There is an integer on each of the cards, this integer is between 1 and 100 000, inclusive. It is possible that some cards have the same integers on them.
Vasily decided to sort the cards. To do this, he repeatedly takes the top card from the deck, and if the number on it equals the minimum number written on the cards in the deck, then he places the card away. Otherwise, he puts it under the deck and takes the next card from the top, and so on. The process ends as soon as there are no cards in the deck. You can assume that Vasily always knows the minimum number written on some card in the remaining deck, but doesn't know where this card (or these cards) is.
You are to determine the total number of times Vasily takes the top card from the deck.
Input
<font size=3 face"微软雅黑">The first line contains single integer n (1 ≤ n ≤ 100 000) — the number of cards in the deck.
The second line contains a sequence of n integers a1, a2, ..., an (1 ≤ ai ≤ 100 000), where ai is the number written on the i-th from top card in the deck.
Output
Print the total number of times Vasily takes the top card from the deck.
Examples
input
4
6 3 1 2
output
7
input
1
1000
output
1
input*
7
3 3 3 3 3 3 3
output
7
暴力代码
#include<iostream>
#include<queue>
#include<algorithm>
#include<cstring>
#include<cstdio>
using namespace std;
queue<int>q;
int main()
{
int n;
scanf("%d",&n);
int a[n];
for(int i=0;i<n;i++)
{
scanf("%d",&a[i]);
q.push(a[i]);
}
sort(a,a+n);
int j=0;
for(int i=1;;i++)
{
if(q.front()==a[j])
{
q.pop();
j++;
if(q.empty())
{printf("%d\n",i);
return 0;
}
}
else
{
q.push(q.front());
q.pop();
}
}
}
STL是指C++标准模板库。它很好用,也很复杂。还原题目的意图显而易见,运用库函数,依靠队列进行模拟摸牌过程。
queue库函数
STL队列定义在头文件中,可以用queues 的方式声明一个队列。用fush()和pop()进行入队与出队,front()取队首元素但不删除。
队列是一种特殊的线性表,特殊之处在于它只允许在表的前端(front)进行删除操作,而在表的后端(rear)进行插入操作。进行插入操作的端称为队尾,进行删除操作的端称为队头。
还原题意既是取对头一张牌符合条件就pop出队头第一张,不符合就将第一张pop出后插入至队尾。
接着只需要判断front()与当前最小值是否相等即可,最小值可以用中sort排序或者或者的迭代器进行判断得出。
set库函数
集合:set
集合(set)与映射(map)是两个经常用的容器。set就是数学上的集合,每个元素至多出现一次,和sort一样,set支持内部排序。set内部采用的就是一种非常高效的平衡检索二叉树:红黑树,也成为RB树(Red-Black Tree),RB树的统计性能要好于一般平衡二叉树,所以被STL选择作为了关联容器的内部结构。
这里有两点需要注意1、set中的元素都是排好序的 。2、set集合中没有重复的元素。即使你输入了两个相同的数,它也仅仅是将原来的变量覆盖掉。
begin() ,返回set容器第一个元素的迭代器
end() ,返回一个指向当前set末尾元素的下一位置的迭代器.
clear() ,删除set容器中的所有的元素
empty() ,判断set容器是否为空
max_size() ,返回set容器可能包含的元素最大个数
size() ,返回当前set容器中的元素个数
rbegin() ,返回的值和end()相同
rend() ,返回的值和begin()相同
map 库函数
映射(map)就是从键(key)到值(value)的映射。因为重载了[]运算符,map更像是数组的“高级版”。
map的简单声明:map<int,string>a 例如可以用一个map<string,int>month_name来表示“月份名字到月份编号”的映射,用month_name["july"]=7这样来赋值,当然赋值的方法有很多种,如
a.insert(pair<int, string>(000, "july"));
a.insert(map<int, string>::value_type(001, "month"));
a[1] = "july";
定义一个map的迭代器时需要声明map<int,int>std::iterator a1;
在map迭代器中根据输入的格式不同,输入相同的“key”会导致map迭代器本身处理相同变量的方法不同。
使用q1.insert(pair<int,int>(a[i],i));方式进行输入,key值相同则进行不操作(忽略)进行下一步,而使用a[1] = "july";这种格式键入则会对上一个重复的key值进行覆盖,也就是将新的value覆盖到旧的value上。
在map迭代器中内部会对key进行排序,下面是使用map判断最小值进行的代码。
使用map的暴力代码
#include<stdio.h>
#include<queue>
#include<algorithm>
#include<string.h>
#include<stdio.h>
#include<iostream>
#include<map>
using namespace std;
queue<int>q;
map<int,int>q1;
map <int, int>::iterator q1_Iter;
int main(){
int n;
scanf("%d",&n);
int a[n];
for(int i=0;i<n;i++)
{
scanf("%d",&a[i]);
q.push(a[i]);
q1.insert(pair<int,int>(a[i],i));
}
int j=0;
q1_Iter = q1.begin( );
for(int i=1;;i++)
{
if(q.front()==q1_Iter->first)
{
q1_Iter++;
int h=q1_Iter->first;
if(h)--q1_Iter;
q.pop();
j++;
if(q.empty())
{
printf("%d\n",i);
return 0;
}
}
else
{
q.push(q.front());
q.pop();
}
}
}
#C++初学记录(STL容器以及迭代器)的更多相关文章
- STL(标准模板库)理论基础,容器,迭代器,算法
基本概念 STL(Standard Template Library,标准模板库)是惠普实验室开发的一系列软件的统称.现然主要出现在C++中,但在被引入C++之前该技术就已经存在了很长的一段时间. ...
- STL容器迭代器失效分析
连续内存序列容器(vector, string, deque) 对于连续内存序列STL容器,例如vector,string,deque,删除当前iterator会使得后面所有的iterator都失效, ...
- stl中的容器、迭代器和算法----vector中的find实现
来源 http://blog.csdn.net/huangyimin/article/details/6133650 stl包括容器.迭代器和算法: 容器 用于管理一些相关的数据类型.每种容器都有它的 ...
- stl之容器、迭代器、算法几者之间的关系
转自:https://blog.csdn.net/bobodem/article/details/49386131 stl包括容器.迭代器和算法: 容器 用于管理一些相关的数据类型.每种容器都有它的优 ...
- STL容器是否是线程安全的
转载http://blog.csdn.net/zdl1016/article/details/5941330 STL的线程安全. 说一些关于stl容器的线程安全相关的话题. 一般说来,stl对于多线程 ...
- STL 容器的概念
STL 容器的概念 在实际的开发过程中,数据结构本身的重要性不会逊于操作于数据结构的算法的重要性,当程序中存在着对时间要求很高的部分时,数据结构的选择就显得更加重要. 经典的数据结构数量有限,但是我们 ...
- STL容器共性机制和使用场景
一.STL容器共性机制 STL容器所提供的都是值(value)寓意,而非引用(reference)寓意,也就是说当我们给容器中插入元素的时候,容器内部实施了拷贝动作,将我们要插入的元素再另行拷贝一份放 ...
- 从零开始写STL—容器—vector
从0开始写STL-容器-vector vector又称为动态数组,那么动态体现在哪里?vector和一般的数组又有什么区别?vector中各个函数的实现原理是怎样的,我们怎样使用会更高效? 以上内容我 ...
- STL——容器(List)List 的概念
1. List 容器的基本概念 1. list 是一个双向链表容器,可高效的进行插入删除元素,他的原理在于每个元素都有两个指针来记录前后两个元素的地址,像火车车厢一样,list 中各个元素在物理存储单 ...
随机推荐
- java基本结构
前言 Java文件的运行过程: 1,javac.exe:编译器 2,java.exe:解释器 微软shell下运行实例: C:\Users\Administrator>cd D:\文档\JAVA ...
- dede自定义内容模型下,列表只显示10条的问题及解决方法
<div class="zjtd-content-ld s-content"> {dede:arclist tagid='ld' row='100' pagesize= ...
- Mysql5.7 建表报 [Err] 1055 问题
最近,在win10系统上,使用docker下载了 mysql5.7镜像,然后建表时,发生奇怪的问题,表正常创建,但底部会出现一行错误信息,如下: [Err] 1055 - Expression #1 ...
- CentOS7源码安装Redis5.0.4非关系型数据库
源码安装redis-5.0.4 一. 下载redis 1. 需要连接网络 二. 案例(另一种安装方法) [root@localhost ~]# wget http://download.redis.i ...
- wget详解
wget命令用来从指定的URL下载文件.wget非常稳定,它在带宽很窄的情况下和不稳定网络中有很强的适应性,如果是由于网络的原因下载失败,wget会不断的尝试,直到整个文件下载完毕.如果是服务器打断下 ...
- node基础学习——http基础知识-01-客户单请求
<一> HTTP基础createServer()相关事件介绍 1. 创建HTTP服务器 server = http.createServer([requestListener]) // 下 ...
- 【Pet HDU - 4707 】【利用并查集找深度】
#include<iostream> #include<cstdio> #include<cstring> using namespace std; const i ...
- 关闭centos大页及swappiness
首先检查THP的启用状态: [root@localhost ~]# cat /sys/kernel/mm/transparent_hugepage/defrag [always] madvise ne ...
- Spring源码窥探之:@Profile
Spring为我们提供的多环境启动 1. 配置类,注入三个不同环境的数据源,并加上注解 /** * description: 以下准备了三套不同环境的数据源 * * @author 70KG * @d ...
- APICloud的tapmode用法
在开发的过程中,直接给元素绑定事件属性onclick会点击没反应,这时,给标签加上tapmode,就解决了问题,查了一下,原来tapmode具有加速点击事件功能,在触发事件中加入tapmode可以消除 ...