摘要: STL容器之优先队列 原地址:http://www.cnblogs.com/summerRQ/articles/2470130.html 优先级队列,以前刷题的时候用的比较熟,现在竟然我只能记得它的关键字是priority_queue(太伤了)。在一些定义了权重的地方这个数据结构是很有用的。 先回顾 阅读全文
posted @ 2017-03-27 12:50 Wei_Xiong 阅读(332) 评论(0) 推荐(0) 编辑
摘要: cout的格式化输出 1.常用: ①double 输出到小数点后n位:(保留精度 n位) 2017-03-27 00:32:17 (常用 ①) 阅读全文
posted @ 2017-03-27 00:33 Wei_Xiong 阅读(1092) 评论(0) 推荐(0) 编辑
摘要: C++模板:函数、结构体、类 模板实现 1.前言:(知道有模板这回事的童鞋请忽视) 普通函数、函数重载、模板函数 认识。 2.函数、结构体、类 模板的 定义样例: 其中,template是定义模板函数的关键字;template后面的尖括号不能省略;class(或typename)是声明数据类型参数标 阅读全文
posted @ 2017-03-22 22:53 Wei_Xiong 阅读(28525) 评论(9) 推荐(2) 编辑
摘要: #include<map> 1.map的声明: map_1 就是一个string对int的映射。 2.map的用法(映射): 3.map的常用指令: 阅读全文
posted @ 2017-03-16 11:15 Wei_Xiong 阅读(232) 评论(0) 推荐(0) 编辑
摘要: #include <cctype>(转,归纳很好) 头文件描述: 这是一个拥有许多字符串处理函数声明的头文件,这些函数可以用来对单独字符串进行分类和转换; 其中的函数描述: 这些函数传入一个等价于字符串的整数作为参数,之后返回一个可以是其他字符或者一个代表布尔值的值,一个整数的0意味着假,一个与不同 阅读全文
posted @ 2017-03-14 23:38 Wei_Xiong 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 运算符重载与sort() 二话不说上代码: 此函数 展示了: ①"<"逻辑符的重载 ②"cout"输出的重载 ③“sort()”的两种排序规则的定义:一种是通过定义逻辑函数"compare",另一种是通过重载逻辑运算符"<" ④更明白了 compare 是定义一种小于 2017-03-11 22:5 阅读全文
posted @ 2017-03-11 22:54 Wei_Xiong 阅读(1827) 评论(0) 推荐(0) 编辑
摘要: #include <fstream> 引用:http://blog.csdn.net/qiang60125/article/details/5949750(fstream 常用方法详解) 1,基本 <fstream>库包含了三个基本的类:ifstream, ofstream和fstream。这三个类 阅读全文
posted @ 2017-03-09 23:40 Wei_Xiong 阅读(183) 评论(0) 推荐(0) 编辑
摘要: Rebranding Problem Description The name of one small but proud corporation consists of n lowercase English letters. The Corporation has decided to try 阅读全文
posted @ 2017-03-09 22:04 Wei_Xiong 阅读(342) 评论(0) 推荐(0) 编辑
摘要: The Meeting Place Cannot Be Changed Problem Description The main road in Bytecity is a straight line from south to north. Conveniently, there are coor 阅读全文
posted @ 2017-03-09 01:17 Wei_Xiong 阅读(1102) 评论(0) 推荐(0) 编辑
摘要: Children's Game Problem Description There are lots of number games for children. These games are pretty easy to play but not so easy to make. We will 阅读全文
posted @ 2017-03-06 13:28 Wei_Xiong 阅读(715) 评论(0) 推荐(0) 编辑
摘要: #include <string> 1.取当中某个字符 与传统一样 c[11]="0123456789"; c[1]=1; ps:好慢 。。 会不会GG。。。 2.一些比较函数 ① 重载运算符 <,>,<=,>=,== 3.一些查找函数 int find(char c, int pos = 0) c 阅读全文
posted @ 2017-03-05 23:44 Wei_Xiong 阅读(215) 评论(0) 推荐(0) 编辑
摘要: cin 字符串输入 在学习c的时候,关于字符串的输入,记得有 scanf("%s",s); gets(s); 还有...o.o 好想没了... scanf("%s",s) 读取一行,但空格相当与一个'\n' 不读取。 while(scanf("%s",s)){} : 支持 Ctrl+z 结束输入 即 阅读全文
posted @ 2017-03-05 23:01 Wei_Xiong 阅读(1474) 评论(0) 推荐(0) 编辑
摘要: 夹角有多大II Problem Description 这次xhd面临的问题是这样的:在一个平面内有两个点,求两个点分别和原点的连线的夹角的大小。注:夹角的范围[0,180],两个点不会在圆心出现。 Input 输入数据的第一行是一个数据T,表示有T组数据。每组数据有四个实数x1,y1,x2,y2分 阅读全文
posted @ 2017-03-05 20:09 Wei_Xiong 阅读(804) 评论(0) 推荐(0) 编辑
WX:我是来搞笑的