1. #include <stdio.h>#include <malloc.h>#include "SeqList.h"typedef unsigned int TSeqListNode;typedef struct _tag_SeqList{ int capacity; int length; T ...
分类:
其他好文 时间:
2016-12-05 22:50:15
阅读次数:
225
Overview MongoDB provides clients the ability to perform write operations in bulk. Bulk write operations affect a singlecollection. MongoDB allows app ...
分类:
数据库 时间:
2016-12-05 14:04:14
阅读次数:
335
flume配置: #DBFile DBFile.sources = sources1 DBFile.sinks = sinks1 DBFile.channels = channels1 # DBFile-DB-Source DBFile.sources.sources1.type = spooldi... ...
分类:
Web程序 时间:
2016-12-03 11:51:21
阅读次数:
449
小Ho:朴素的想法是我用一个二维数组来把整个平面图表示出来。假设坐标的范围是L,那么就需要一个L*L的数组。 对于(a,b)和r,我就检查a-r到a+r行的b-r列到b+r列,看其中是否存在有点,并且点到(a,b)的距离是小于等于r的。 对于L超过10000的情况就没有办法实现了。 小Hi:没错,在 ...
分类:
其他好文 时间:
2016-11-13 16:45:30
阅读次数:
260
package MyArrayList;import java.util.*;/** * 模拟实现JDK中的ArrayList类 * @author iwang * */public class MyArrayList { /** * The value is used for Object sto ...
分类:
编程语言 时间:
2016-11-12 16:16:03
阅读次数:
197
Java NIO与IO的区别:传统的IO中需要为每个连接建立一个线程,当并发数量巨大时,对内存及线程切换的开销巨大,NIO提供线程池,不再为每个连接建立单独的线程,提供了非阻塞的能力。 1、Java NIO的核心组件: Channels:所有的IO在NIO中都从一个Channel开始,Channel ...
分类:
编程语言 时间:
2016-11-10 14:03:18
阅读次数:
186
题目描述 Farmer John suffered a terrible loss when giant Australian cockroaches ate the entirety of his hay inventory, leaving him with nothing to feed th ...
分类:
其他好文 时间:
2016-11-10 13:54:54
阅读次数:
318
LinkedHashMap可认为是哈希表和链接列表综合实现,并允许使用null值和null键。LinkedHashMap实现与HashMap的不同之处在于,LinkedHashMap维护着一个运行于所...
分类:
其他好文 时间:
2016-11-06 17:42:22
阅读次数:
248
add操作: private transient Object[] elementData; private static final int DEFAULT_CAPACITY = 10; public ArrayList() { super(); this.elementData = EMPTY_ ...
分类:
其他好文 时间:
2016-11-01 16:42:38
阅读次数:
172
关键常量: private static final int DEFAULT_CAPACITY = 10; 当没有其他参数影响数组大小时的默认数组大小 private static final Object[] EMPTY_ELEMENTDATA = {}; 如果elementData用这个变量初始 ...
分类:
其他好文 时间:
2016-11-01 11:30:44
阅读次数:
295