机器人可分为海陆空3类,
1) 陆地机器人应用最多, 又可分为家庭用途、工业用途
家庭用途:扫地机器人、割草机器人、无人车(成本昂贵,是普通汽车的一倍以上)...
工业用途:
智能机械手(安川等)喷漆、焊接、码垛;
建筑机器人:砌墙、
仓储:无人叉车(成本昂贵,是普通叉车的一倍以上)、kiva (amazon)
Boston Dynamics,可...
分类:
其他好文 时间:
2015-02-27 21:38:11
阅读次数:
225
亚马逊的物联网试水--Amazon Echo
语音控制将是未来物联网的主要操作方式...
分类:
其他好文 时间:
2015-02-26 10:02:51
阅读次数:
164
1.Gcc编译流程1)预处理gcc -E hello.c -o hello.i-o指目标文件..i文件为已经过预处理的c原始程序2)编译gcc -S hello.i -o hello.s3)汇编gcc -c hello.s -o hello.o4)链接gcc hello.o -o hellogcc ...
分类:
其他好文 时间:
2015-02-25 10:14:51
阅读次数:
107
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2. For example,Given:s1 = "aabcc",s2 = "dbbca",When s3 = "aadbbcbcac", retu...
分类:
其他好文 时间:
2015-02-24 15:08:54
阅读次数:
164
Greetings from Amazon Seller Support,Thank you for writing back to us.I have reviewed our previous correspondence with you, and I offer my sincere apo...
分类:
移动开发 时间:
2015-02-22 19:34:07
阅读次数:
184
Dear Seller, Greetings from Amazon Seller Support. From your mail, I understand that you would like to know about the Amazon Giveaway. I apologize for...
分类:
其他好文 时间:
2015-02-17 11:31:58
阅读次数:
184
尤其在互联网世界,图计算越来越受到人们的关注,而图计算相关的软件也越来越丰富。本文将高速展示 Titan这个open source 的图数据库。注:本文的操作主要基于Titan 官方的两篇文档:- http://s3.thinkaurelius.com/docs/titan/0.5.0/arch-o...
分类:
数据库 时间:
2015-02-16 18:11:07
阅读次数:
364
According to news reports, freighter cargo may not be offloaded at U.S. West Coast ports from February 13 through February 16. This may result in a de...
分类:
其他好文 时间:
2015-02-13 14:45:40
阅读次数:
125
有两个字符串S1和S2,求一个最长公共子串,即求字符串S3,它们同时是S1和S2的子串,且要求它们的长度最长,并确定这个长度。这个问题我们称之为最长公共子序列问题。
与求最长递增子序列一样,我们首先将原问题分割成一些子问题,我们用dp[i][j]表示S1中前i个字符和S2中前j个字符分别组成的两个前缀字符串的最长公共子串长度。显然的,当i,j较小时我们可以直接给出答案,如dp...
分类:
编程语言 时间:
2015-02-12 16:22:43
阅读次数:
178
1.shuffle deck of cards and draw cards
import itertools,random
deck=list(itertools.product(range(1,14),['Spade','Heart','Diamond','Club']))
random.shuffle(deck)
for i in range(5):
print deck[...
分类:
其他好文 时间:
2015-02-10 09:16:33
阅读次数:
138