此问题起于我在Ubuntu1004上装了两个版本的eclipse:Galieo+helios;卸载前者后出现启动不了eclipse的问题;在网上找了下,可以按如下过程进行解决: Eclipse 3.6 在 Ubuntu 10.04 下会出现一个很奇怪的现象,我没有经过测试,无法确定是Ubuntu 1 ...
分类:
编程语言 时间:
2016-05-09 20:16:38
阅读次数:
379
Little jay really hates to deal with string. But moondy likes it very much, and she's so mischievous that she often gives jay some dull problems relat ...
分类:
其他好文 时间:
2016-04-30 22:03:35
阅读次数:
180
这个章节致力于学习Netty的数据容器,容器都是基于ByteBuf的,我们一开始解释了ByteBuf的性能为什么比JDK的高,我们也强调了说明了一个个新的API,并解释了它们使用的每一个场景
以下,是我们刚刚提及过的:
1)read和write两个不同的索引控制这我们对数据的操作
2)不同的内存使用方法---backing arrays 和 direct buffers
3)可以使用CompositeByteBuf来使多种ByteBuf聚集
4)数据接入的方法:searching,slicing和copy...
分类:
Web程序 时间:
2016-04-29 19:21:22
阅读次数:
338
这个章节致力于学习Netty的数据容器,容器都是基于ByteBuf的,我们一开始解释了ByteBuf的性能为什么比JDK的高,我们也强调了说明了一个个新的API,并解释了它们使用的每一个场景
以下,是我们刚刚提及过的:
1)read和write两个不同的索引控制这我们对数据的操作
2)不同的内存使用方法---backing arrays 和 direct buffers
3)可以使用CompositeByteBuf来使多种ByteBuf聚集
4)数据接入的方法:searching,slicing和copy...
分类:
Web程序 时间:
2016-04-26 21:28:41
阅读次数:
280
Searching in a Radius using Postgres Creating a GEO application has never been easier. You can have a fully working "What's close to me" in a matter o ...
分类:
其他好文 时间:
2016-04-06 12:58:11
阅读次数:
235
题目大概是给一个主串,询问若干个模式串出现次数,其中有些模式串要求不能重叠。 对于可以重叠的就是一个直白的多模式匹配问题;而不可重叠,在匹配过程中贪心地记录当前匹配的主串位置,然后每当出现一个新匹配根据记录的位置判断这个新匹配是否成立,最后更新位置。 另外,考虑到数据可以出现多个模式串相同的情况,实 ...
分类:
其他好文 时间:
2016-04-05 09:20:54
阅读次数:
152
ZOJ 3228 题目网址:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=16401 Description Little jay really hates to deal with string. But moondy li ...
分类:
其他好文 时间:
2016-04-01 20:34:51
阅读次数:
204
不带修改的二维求RMQ,二维线段树。 #include<iostream> #include<cstdio> #include<cstring> #include<cstdlib> #include<algorithm> #define REP(i,a,b) for(int i=a;i<=b;i++
分类:
其他好文 时间:
2016-03-05 16:11:56
阅读次数:
221
There was once a project about establishing a website providing some basic functions such as showing data from a database, searching for some certain
分类:
其他好文 时间:
2016-03-03 22:51:27
阅读次数:
168
Cha 11. Sorting and Searching Summary Problems 11.1 merge B into A in sorted order 11.2 sort string array so anagrams next to each other 11.3 find num
分类:
其他好文 时间:
2016-02-28 06:28:23
阅读次数:
204