机器人出厂自带了一系列例程,该例程可以根据选择器位置来启动,来做许多基本演示。 这个是E-PUCK机器人的 完整代码 中作为MPLAB项目提供,否则如果只需要hex文件,则可以从DemoGCtronic-complete.hex。如果您在Windows(打开项目文件demoGCtronic.mcp) ...
分类:
其他好文 时间:
2018-08-25 18:43:35
阅读次数:
200
```python
#
# Generator with yield
# astr = 'ABC' alist = [1, 2, 3] adict = dict(name='kct', age=18) agen = (i for i in range(5)) def gen(*args): for ... ...
分类:
其他好文 时间:
2018-08-25 17:29:41
阅读次数:
169
Problem UVA12188-Inspector's Dilemma Time Limit: 3000 mSec Problem Description In a country, there are a number of cities. Each pair of city is connec ...
分类:
其他好文 时间:
2018-08-25 14:33:16
阅读次数:
207
题目描述: 题目思路: 1.用结构链表来建树 2.用队列来实现层次遍历,当遍历到根节点时,将其子节点压入队列 ...
分类:
其他好文 时间:
2018-08-25 11:47:55
阅读次数:
145
1.词性标注器 parts-of-speech 或 POS tagger nltk自带英文标注器 import nltk text = nltk.word_tokenize("And now for something completely different")#list print(nltk.p ...
分类:
其他好文 时间:
2018-08-24 14:56:34
阅读次数:
236
In computer science, a heap is a specialized tree-based data structure that satisfies the heap property: if P is a parent node of C, then the key (the ...
分类:
其他好文 时间:
2018-08-23 19:26:03
阅读次数:
288
巧用Ajax的beforeSend 提高用户体验 jQuery是经常使用的一个开源js框架,其中的$.ajax请求中有一个beforeSend方法,用于在向服务器发送请求前执行一些动作。 具体可参考jQuery官方文档:http://api.jquery.com/Ajax_Events/ 防止重复数 ...
分类:
Web程序 时间:
2018-08-22 16:43:28
阅读次数:
160
第1章 数据类型 1.类别: ² 数值类型 ² 字符类型 ² 时间类型 ² 二进制类型 2.数据类型的ABC要素 ² Apperopriate(适当) ² Brief(简洁) ² Complete(完整) 1.1 数值类型 类型 存储 最小值 最大值 (字节) (符号/无符号) (符号/无符号) T ...
分类:
其他好文 时间:
2018-08-21 11:34:25
阅读次数:
202
1、关于页面元素的引用通过jquery的$()引用元素包括通过id、class、元素名以及元素的层级关系及dom或者xpath条件等方法,且返回的对象为jquery对象(集合对象),不能直接调用dom定义的方法。2、jQuery对象与dom对象的转换只有jquery对象才能使用jquery定义的方法 ...
分类:
Web程序 时间:
2018-08-20 01:11:34
阅读次数:
201
例子: 在执行数据保持时提示session.save(p); 的错误。 INFO: HHH000232: Schema update complete Hibernate: insert into Post (postName) values (?) 八月 19, 2018 5:07:17 下午 o ...
分类:
数据库 时间:
2018-08-19 18:00:44
阅读次数:
204