摘要: 487-3279 Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 300264 Accepted: 53757 Description Businesses like to have memorable telephone num 阅读全文
posted @ 2018-01-12 16:38 卉卉卉大爷 阅读(177) 评论(0) 推荐(0) 编辑
摘要: C++ STL 中 map 容器 Map是STL的一个关联容器,它提供一对一(其中第一个可以称为关键字,每个关键字只能在map中出现一次,第二个可能称为该关键字的值)的数据 处理能力,由于这个特性,它完成有可能在我们处理一对一数据的时候,在编程上提供快速通道。这里说下map内部数据的组织,map内部 阅读全文
posted @ 2018-01-12 15:19 卉卉卉大爷 阅读(1369) 评论(0) 推荐(0) 编辑
摘要: 一、Pair类型概述 pair是一种模板类型,其中包含两个数据值,两个数据的类型可以不同,基本的定义如下: pair<int, string> a; pair<int, string> a; pair<int, string> a; 表示a中有两个类型,第一个元素是int型的,第二个元素是strin 阅读全文
posted @ 2018-01-12 11:53 卉卉卉大爷 阅读(276) 评论(0) 推荐(0) 编辑
摘要: Exponentiation Time Limit: 500MS Memory Limit: 10000K Total Submissions: 175340 Accepted: 42341 Description Problems involving the computation of exac 阅读全文
posted @ 2018-01-11 19:25 卉卉卉大爷 阅读(424) 评论(0) 推荐(0) 编辑
摘要: C++ :: 1、作用域符号 作用域符号::的前面一般是类名称,后面一般是该类的成员名称,C++为例避免不同的类有名称相同的成员而采用作用域的方式进行区分如:A,B表示两个类,在A,B中都有成员member。那么 A::member就表示类A中的成员member B::member就表示类B中的成员 阅读全文
posted @ 2018-01-11 15:37 卉卉卉大爷 阅读(254) 评论(0) 推荐(0) 编辑
摘要: C++中string.find()函数与string::npos (1)查找字符串a是否包含子串b ^(* ̄(oo) ̄)^不是用strA.find(strB) > 0 (2)关于str.find() npos是这样定义的static const size_type npos = -1;因为 stri 阅读全文
posted @ 2018-01-11 15:25 卉卉卉大爷 阅读(585) 评论(0) 推荐(0) 编辑
摘要: Trees Made to Order Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 7155 Accepted: 4094 Description We can number binary trees using the fo 阅读全文
posted @ 2018-01-10 19:39 卉卉卉大爷 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 卡塔兰数 卡塔兰数是组合数学中一个常出现在各种计数问题中出现的数列。由以比利时的数学家欧仁·查理·卡塔兰 (1814–1894)命名。 卡塔兰数的一般项公式为 另类递归式: h(n)=((4*n-2)/(n+1))*h(n-1); 前几项为: 1, 1, 2, 5, 14, 42, 132, 429 阅读全文
posted @ 2018-01-10 19:38 卉卉卉大爷 阅读(400) 评论(0) 推荐(0) 编辑
摘要: DNA Sorting Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 105159 Accepted: 42124 Description One measure of ``unsortedness'' in a sequenc 阅读全文
posted @ 2018-01-03 23:36 卉卉卉大爷 阅读(244) 评论(0) 推荐(0) 编辑
摘要: Hangover Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 131191 Accepted: 63828 Description How far can you make a stack of cards overhang 阅读全文
posted @ 2018-01-03 18:33 卉卉卉大爷 阅读(489) 评论(0) 推荐(0) 编辑