c++库-库函数的使用
GoldenFingers
持之以恒!!!
展开
-
String使用方法详解
标准c++中string类函数介绍注意不是CString之所以抛弃char*的字符串而选用C++标准程序库中的string类,是因为他和前者比较起来,不必 担心内存是否足够、字符串长度等等,而且作为一个类出现,他集成的操作函数足以完成我们大多数情况下(甚至是100%)的需要。我们可以用 = 进行赋值操作,== 进行比较,+ 做串联(是不是很简单?)。我们尽可以把它看成是C++的基本数据类型转载 2017-02-26 10:55:10 · 1477 阅读 · 0 评论 -
vector函数用法
vector是线性容器,它的元素严格的按照线性序列排序,和动态数组很相似,和数组一样,它的元素存储在一块连续的存储空间中,这也意味着我们不仅可以使用迭代器(iterator)访问元素,还可以使用指针的偏移方式访问,和常规数组不一样的是,vector能够自动存储元素,可以自动增长或缩小存储空间,vector的优点:1. 可以使用下标访问个别的元素2. 迭代器可以按转载 2017-02-26 11:04:09 · 492 阅读 · 0 评论 -
库函数的使用:sscanf的使用方法
(转)sscanf() - 从一个字符串中读进与指定格式相符的数据 函数原型: Int sscanf( string str, string fmt, mixed var1, mixed var2 … ); int scanf( const char *format [,argument]… ); 说明: sscanf与scanf类似,都是用于输入的,只是后者以屏幕(stdin转载 2017-03-25 10:41:38 · 755 阅读 · 0 评论 -
库函数的使用:POJ1488-TEX Quotes(getline()的使用)
TEX QuotesTime Limit: 1000MSMemory Limit: 10000K Total Submissions: 9385DescriptionTEX is a typesetting language developed by Donald Knuth. It takes source text together with a few typesetting instruc原创 2017-08-28 21:33:41 · 377 阅读 · 0 评论 -
set的应用:UVa10815-Andy's First Dictionary
Andy’s First DictionaryAndy, 8, has a dream - he wants to produce his very own dictionary. This is not an easy task for him, as the number of words that he knows is, well, not quite enough. Instead of原创 2017-09-09 10:15:44 · 369 阅读 · 0 评论 -
map函数的应用:UVa156-Ananagrams
AnanagramsMost crossword puzzle fans are used to anagrams — groups of words with the same letters in different orders — for example OPTS, SPOT, STOP, POTS and POST. Some words however do not have this原创 2017-09-09 11:06:45 · 380 阅读 · 0 评论