From: http://blog.csdn.net/itplus/article/details/9361915 本文是对http://mnemstudio.org/path-finding-q-learning-tutorial.htm的翻译,共分两部分,第一部分为中文翻译,第二部分为英...
分类:
编程语言 时间:
2015-06-19 18:41:13
阅读次数:
304
【POJ 2049】Finding Nemo
迷宫类Bfs...
分类:
其他好文 时间:
2015-06-15 09:40:14
阅读次数:
99
Developers are now finding themselves having to author applications for a diverse range of mobile platforms (iOS, Android, Windows Phone, …), each of ...
分类:
移动开发 时间:
2015-06-12 06:26:35
阅读次数:
218
Mashmokh’s boss, Bimokh, didn’t like Mashmokh. So he fired him. Mashmokh decided to go to university and participate in ACM instead of finding a new job. He wants to become a member of Bamokh’s team. I...
分类:
其他好文 时间:
2015-06-02 13:24:48
阅读次数:
132
分析:一个图,求图中‘#’组成了多少个十字架,注意十字架的宽度是奇数。对每个‘#’判断,上下左右 ,步长为1 ,2,。。。25是不是都符合条件,符合的话判断个数为奇数即可。
#include
using namespace std;
#define N 50
char map[N][N];
int dir[4][2]={
{-1,0},
{0,-1},
{1,0},
{0,1}};
i...
分类:
其他好文 时间:
2015-05-31 18:31:41
阅读次数:
110
Source Monitor is a code analyzing tool that is capable of finding the complexity for Java, C++、C、C#、Delphi、Visual Basic and HTML source codes. It's a...
分类:
其他好文 时间:
2015-05-22 00:07:19
阅读次数:
2132
Series IntroductionPacketloopCTO Michael Baker (@cloudjunky) made abig splashwhen he presented ‘Finding Needles in Haystacks (the Size of Countries)‘ ...
分类:
其他好文 时间:
2015-05-19 12:29:07
阅读次数:
246
Lecture5: Floating point number , successive refinement, finding roots 浮点数和二分法3wschool 数字>>> a = 2 ** 1000
>>> a
1071508607186267320948425049060001810561404811705533607443750388370351051124936122493198...
分类:
编程语言 时间:
2015-05-18 18:55:25
阅读次数:
236
LINQ (Language-INtegrated Query)Programmers perform every day is finding and retrieving (存取) objects in memory, a database, or an XML file. SQL(relati...
题目链接:http://poj.org/problem?id=3740dancing links 入门题 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 int M...
分类:
其他好文 时间:
2015-04-23 23:06:23
阅读次数:
148