Robot Tour Guide Examples MDP Grid World Problems With Conventional Planning For this problem (and only this problem) assume actions are stochastic in ...
分类:
其他好文 时间:
2019-06-07 11:03:21
阅读次数:
88
代理模式 代理模式的定义 代理模式(Proxy Pattern)是一个使用率非常高的模式,其定义如下: Provide a surrogate or placeholder for another object to control access to it.(为其他对象提供一种代理以控制对象的访问 ...
分类:
其他好文 时间:
2019-06-07 01:00:31
阅读次数:
126
线程池(java各种线程池设计、线程池原理) 多线程通信同步锁(各种锁、信号量、条件变量等) 多线程之间协作 [CountDownLatch\CyclicBarrier] CountDownLatch: 类似于一个计数器。单个线程可重入。调用awit()方法阻塞,等待计数器归0。由此可用于实现一个人 ...
分类:
编程语言 时间:
2019-06-07 00:54:10
阅读次数:
101
vsftpd作为FTP服务器,在Linux系统中是非常常用的。下面我们介绍如何在centos系统上安装vsftp。 什么是vsftpd vsftpd是一款在Linux发行版中最受推崇的FTP服务器程序。特点是小巧轻快,安全易用。 vsftpd 的名字代表"very secure FTP daemon ...
分类:
其他好文 时间:
2019-06-06 10:44:03
阅读次数:
148
基础命令 1. mkdir(创建新目录) 在目录/mnt下建立文件夹usb mkdir /mnt/usb 2 .find(目录索引文件) (1)根据文件名查找 查找一个文件名是test.py的文件 find / -name test.py (文件中的“/”表示整个硬盘) (2)根据部分文件名称查找 ...
分类:
系统相关 时间:
2019-06-03 20:16:18
阅读次数:
122
Another challenging trend in Internet evolution is the tremendous growth of the infrastructure in every dimension, including bandwidth capacity of lin ...
分类:
其他好文 时间:
2019-06-03 17:15:10
阅读次数:
126
本章学习了关于查找的算法知识。 查找算法的评价指标:关键字的平均查找长度ASL。 查找成功的平均查找长度: 不成功查找算法:若查找概率相同且进行顺序查找,每次查找都不成功 ASL=n (1)顺序查找: 【传统】 1 find(SSTable s, KeyType x) 2 { 3 int i; 4 ...
分类:
其他好文 时间:
2019-06-03 00:18:39
阅读次数:
136
class MyClass: """一个简单的类实例""" i = 12345 def f(self): return 'hello world' # 实例化类 x = MyClass() # 访问类的属性和方法 print("MyClass 类的属性 i 为:", x.i) print("MyCl... ...
分类:
编程语言 时间:
2019-06-02 18:11:23
阅读次数:
140
创建桌面快捷方式 Specifying the Java virtual machineHere is a typical Eclipse command line: eclipse -vm c:\jdk6u22\jre\bin\javawTip: It's generally a good ide ...
分类:
编程语言 时间:
2019-06-02 01:20:47
阅读次数:
187
There is an apple tree outside of kaka's house. Every autumn, a lot of apples will grow in the tree. Kaka likes apple very much, so he has been carefu ...
分类:
移动开发 时间:
2019-06-01 21:30:38
阅读次数:
128