原文地址:http://docs.orchardproject.net/最近想要学习了解orchard,但却没有找到相关的中文文档,只有英文文档。于是决定自行翻译,以便日后方便翻阅。转载请注明原作者与出处。本人英文水平有限,错误之处欢迎指出以便修正。Orchard 文档Note:该文档站点内的所有与...
分类:
其他好文 时间:
2015-01-29 14:23:31
阅读次数:
507
最近Linux的最新内核已经release到Linux-3.19-rc6,根据Linus的release note,大约再经过一次rc7版本就可以正式release了。Linux 3.19内核在block层的最大变化就是增加了一个multi-queue block layer,来更好的支持类似于NVME等支持multi-queue机制的设备。所谓的multi-queue机制就是在多核CPU的情况下...
分类:
系统相关 时间:
2015-01-29 10:35:26
阅读次数:
420
题目:
Given a list of non negative integers, arrange them such that they form the largest number.
For example, given [3, 30, 34, 5, 9], the largest formed number is 9534330.
Note: The result...
分类:
编程语言 时间:
2015-01-28 13:08:57
阅读次数:
245
Given an integer n, return the number of trailing zeroes in n!.
Note: Your solution should be in logarithmic time complexity.
题目是非常简单的,计算一个数字递归相乘后末尾0的个数
在相乘出现2*5才有可能出现0,2一般是足够的,主要是5的个数,因为是阶乘,...
分类:
其他好文 时间:
2015-01-28 13:06:21
阅读次数:
123
【题目】
Given two numbers represented as strings, return multiplication of the numbers as a string.
Note: The numbers can be arbitrarily large and are non-negative.
【分析】
高精度乘法(大数乘法)
【代码】
/***...
分类:
其他好文 时间:
2015-01-28 13:02:52
阅读次数:
165
Given a list of non negative integers, arrange them such that they form the largest number.
For example, given [3, 30, 34, 5, 9], the largest formed number is 9534330.
Note: The result may be ve...
分类:
其他好文 时间:
2015-01-28 11:10:29
阅读次数:
148
CylinderGeometry用来在三维空间内创建一个圆柱,圆锥,圆桶对象.
NOTE: 和CircleGeometry对象一样,如果我们把参数radialSeagments的值设置成4,是不是就变成了棱台了,设置成3,并且radiusTop设置成0,是不是就是金字塔了????
用法: var geometry = new THREE.CircleGeometry(5,5,20,32);
var material = new THREE.MeshBasicMaterial({color: ...
分类:
Web程序 时间:
2015-01-28 09:51:49
阅读次数:
278
嗯。学完数字电路,期末老师布置了几个FPGA题目选择完成,时间为两星期。我把几道题整合了一下,做了个小系统,还挺好玩的。两个星期的时间很短,越到后期感觉越疲惫,注意力开始发散,效率也逐渐下滑,还好坚持了下来。简单介绍一下:软件开发平台:quartus ii13.1,modelsim10.2,note...
分类:
其他好文 时间:
2015-01-28 06:13:59
阅读次数:
250
Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST.
Calling next() will return the next smallest number in the BST.
Note: next() and...
分类:
其他好文 时间:
2015-01-27 21:58:04
阅读次数:
172
? 小米刚刚推出了自己最新的小米Note机型,其配备的最新高通骁龙处理器、超大2K显示屏和4GB RAM配置扮演了价格杀手的角色。但是对于开发领域的我们来说,小米公司似乎并不像其产品看起来那么优秀。一直以来,...
分类:
移动开发 时间:
2015-01-27 18:46:43
阅读次数:
213