摘要: Like Mr. Lamb, librarians have their problems with borrowers too. People don't put books back where they should. Instead, returned books are kept at t 阅读全文
posted @ 2016-05-10 22:33 Not-Bad 阅读(257) 评论(0) 推荐(0) 编辑
摘要: size_t一般用来表示一种计数,比如有多少东西被拷贝等。例如:sizeof操作符的结果类型是size_t,该类型保证能容纳实现所建立的最大对象的字节大小。 它的意义大致是“适于计量内存中可容纳的数据项目个数的无符号整数类型”。所以,它在数组下标和内存管理函数之类的地方广泛使用。 size_t是全局 阅读全文
posted @ 2016-05-10 22:26 Not-Bad 阅读(255) 评论(0) 推荐(0) 编辑
摘要: #include <string.h> const char *c_str(); 返回字符串地址,是一个c函数,返回类型const char*c_str()函数返回一个指向正规C字符串的指针常量, 内容与本string串相同. 这是为了与c语言兼容,在c语言中没有string类型,故必须通过stri 阅读全文
posted @ 2016-05-10 22:10 Not-Bad 阅读(1487) 评论(0) 推荐(0) 编辑
摘要: sort的应用; 1、可以传入两个参数; sort(a,a+N) ,其中a是数组,a+N表示对a[0]至a[N-1]的N个数进行排序(默认从小到大排序); 2、传入三个参数; sort(a,a+N,cmp),第三个参数是一个函数 ; 如果让函数从大到小排序,可以用如下算法实现; bool cmp(i 阅读全文
posted @ 2016-05-10 21:50 Not-Bad 阅读(1129) 评论(0) 推荐(0) 编辑
摘要: The only printer in the computer science students' union is experiencing an extremely heavy workload. Sometimes there are a hundred jobs in the printe 阅读全文
posted @ 2016-05-10 20:59 Not-Bad 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 给出平面上N(N<=1000)个点。问是否可以找到一条竖线,使得所有点左右对称,如图所示: 则左边的图形有对称轴,右边没有。 Sample Input 3 5 -2 5 0 0 6 5 4 0 2 3 4 2 3 0 4 4 0 0 0 4 5 14 6 10 5 10 6 14 Sample Ou 阅读全文
posted @ 2016-05-10 19:14 Not-Bad 阅读(280) 评论(0) 推荐(0) 编辑
摘要: Compound Words You are to find all the two-word compound words in a dictionary. A two-word compound word is a word in the dictionary that is theconcat 阅读全文
posted @ 2016-05-10 12:58 Not-Bad 阅读(211) 评论(0) 推荐(0) 编辑
摘要: SUBSTR(<字符表达式>、<数值表达式1>[,<数值表达式2>] 得到字符串的子字符串 阅读全文
posted @ 2016-05-10 12:49 Not-Bad 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Foreign Exchange Your non-profit organization (iCORE - international Confederation of Revolver Enthusiasts) coordinates a very successful foreign stud 阅读全文
posted @ 2016-05-10 12:31 Not-Bad 阅读(196) 评论(0) 推荐(0) 编辑