5) The Java Interface a) Reading Data from a Hadoop URL. 使用hadoop URL来读取数据 b) Although we focus mainly on the HDFS implementation, DistributedFileSyst ...
分类:
其他好文 时间:
2018-02-19 21:16:11
阅读次数:
198
Research and Implementation of Global Path Planning for Unmanned Surface Vehicle Based on Electronic Chart (基于电子海图的水面无人艇全局路径规划) 该论文已经在ICMI ...
分类:
其他好文 时间:
2018-02-12 13:48:41
阅读次数:
225
先来看个效果: 新建视图类。在直接加入代码: // Only override drawRect: if you perform custom drawing. // An empty implementation adversely affects performance during anima ...
分类:
移动开发 时间:
2018-02-12 13:38:05
阅读次数:
255
以前读 SICP ,虽然很有趣,但并没有讲 cons、car与cdr是怎样实现的。今天读 the implementation of functional programming languages ,里面讲到了如何用lambda实现这三个函数,这里给出用 scheme 和 javascript 改 ...
分类:
其他好文 时间:
2018-02-10 23:28:08
阅读次数:
443
查看readme文件: Execute the following from the src/ directory: ./configure try to figure out all implementation differences cd lib build the basic library ...
分类:
其他好文 时间:
2018-02-09 22:18:41
阅读次数:
173
第一次写状态机,参考现有代码写了一个框架,在网上看了一些例子,结果就陷入了纠结中,不知道状态机哪种形式比较好,是不是还缺少什么,各位大牛有什么建议敬请回复,我会持续更新,非常感谢! 第一种形式: 所有的状态通过if...else来跳转,主线程收到消息之后会进入当前状态进行处理,在一大堆的if...e ...
分类:
其他好文 时间:
2018-02-02 21:49:45
阅读次数:
156
7.1 分离接口和实现文件 通常,类的声明(@interface部分)要放在它自己的名为class.h的文件中,而类的定义(@implementation部分)通常放在相同名称的文件中,但扩展名要使用.m。通过在.m中导入.h文件,使编译器知道为当前类声明的类和方法,同时还能确保这两个文件的一致性。 ...
分类:
其他好文 时间:
2018-01-29 00:29:23
阅读次数:
160
针对非IE浏览器的其他浏览器,即属于DOM2级浏览器(opera、firefox、chrome、safair),DOM2级使用document.implementation对象中的creatDocument()方法来创建xmlDom。 1、创建xmlDom var xmlDom = document ...
分类:
其他好文 时间:
2018-01-26 18:41:42
阅读次数:
157
Python内建的字典就是用 hash table实现的。这里我们只是通过实现自己的hash table来加深对hash table 和hash functions的理解。 【 概念1: Mapping (映射)】 字典通过键(Key)来索引。一个key对应一个存储的value。任意不可变的数据类型 ...
分类:
编程语言 时间:
2018-01-20 11:04:28
阅读次数:
284