创建项目 mvn archetype:create -DgroupId=com.bc -DartifactId=myMaven -DarchetypeArtifactId=maven-archetype-webapp...
分类:
其他好文 时间:
2014-10-12 11:35:38
阅读次数:
147
如果每一次查询的不是整个长度,而是[x, y]这个区间。。闲来无事自己写了一下,感觉是对的,这样就变成了合并区间。
#include
#include
#include
#include
#include
#include
#define mem(f) memset(f,0,sizeof(f))
#define M 100005
#define mod 1000000007
...
分类:
其他好文 时间:
2014-10-10 03:39:16
阅读次数:
196
//字符串分割函数std::vector split(std::string str,std::string pattern){ std::string::size_type pos; std::vector result; str+=pattern;//扩展字符串以方便操作 ...
分类:
编程语言 时间:
2014-10-09 02:33:37
阅读次数:
220
鸣人的查克拉
Time Limit: 1000ms
Memory Limit: 65536KB
64-bit integer IO format: %lld Java class name: Main
Prev Submit Status Statistics Discuss Next
Font Size:
+
-
Type:
...
分类:
其他好文 时间:
2014-10-06 11:31:40
阅读次数:
314
方(芳)格(哥)取数
Time Limit: 3000ms
Memory Limit: 65536KB
64-bit integer IO format: %lld Java class name: Main
Prev Submit Status Statistics Discuss Next
Font Size:
+
-
Type...
分类:
其他好文 时间:
2014-10-04 23:15:07
阅读次数:
291
夜空中最亮的星
Time Limit: 2000ms
Memory Limit: 65536KB
64-bit integer IO format: %lld Java class name: Main
Prev Submit Status Statistics Discuss Next
Font Size:
+
-
Type: ...
分类:
其他好文 时间:
2014-10-04 21:31:57
阅读次数:
298
第3章 标准库类型
1.任何存储string的size操作结果的变量类型必须为string::size_type类型。
2.同理存储vector的size值应使用类似vector::size_type的类型变量
3.使用for(vector::size_type ix=0; ix != ivec.size(); ++ix)的风格 a.使用!=的效率更高 b.在循环过程中可能ivec的元素个数...
分类:
编程语言 时间:
2014-10-03 01:26:33
阅读次数:
411
有array(数组)、smartptr(智能指针)、stack(栈);一、array:1、我们实现了指针访问和下标访问。C++中指针访问常用迭代器来代替。2、这里我们也揭示了 size_type、iterator、[] 、begin()、end()、size()的真实面目;Array.hpp 1 #...
分类:
编程语言 时间:
2014-10-02 02:02:52
阅读次数:
292