八数码0.0,我又来水博客了。
IDA*算法,A*为曼哈顿距离,判重用康拓展开。
#include
#include
#include
#include
#include
using namespace std;
int a[4][4];
int dx[]={0,0,-1,1};
int dy[]={-1,1,0,0};
char s[]="123804765";
int end[4]...
分类:
其他好文 时间:
2014-05-11 06:20:57
阅读次数:
334
iwangzheng.com16:57 [root@a02.cmsapi]$ mysql
-u-p -h10.103.xx.xxWelcome to the MySQL monitor. Commands end with ; or \g.Your
MySQL connection id is 57...
分类:
数据库 时间:
2014-05-10 20:57:56
阅读次数:
441
NS_CLASS_AVAILABLE_IOS(6_0) UIRefreshControl
有个毛病有时会出bug 动画下拉就不动了,这里给出修复处理:@interface UICollectionView
(FixRefreshControlJump)@end#import "UICollectio...
分类:
移动开发 时间:
2014-05-10 07:44:40
阅读次数:
529
在谈这个之前先啰嗦几个概念。基线:书写英语单词时为了规范书写会设有四条线,从上至下第三条就是基线。基线对齐主要是为了两个控件中显示的英文单词的基线对齐,如下所示:
Start:在看API的时候经常会有Start对齐,End对齐,Start对齐主要是为了能够在不同的textDirection(文本排....
分类:
移动开发 时间:
2014-05-10 07:22:00
阅读次数:
440
error: RPC failed; result=22, HTTP code = 411fatal:
The remote end hung up unexpectedly解决方法:git config http.postBuffer 524288000
分类:
其他好文 时间:
2014-05-10 01:06:09
阅读次数:
367
1.for循环语句:for loop_counter in [REVERSE]
lowest_number .. highest_numberloop {.statements.}end loop;示例:declare v_i
number(4) := 0;begin for v_i in 0...
分类:
其他好文 时间:
2014-05-10 00:19:58
阅读次数:
396
procedureTForm1.FormCreate(Sender:TObject);beginBorderStyle:=bsNone;Brush.Style:=bsClear;end;
互联网,即因特网,Internet。互联网是一个世界范围的计算机网络。连接了世界上无数的计算设备,这些计算设备为PC,基于Linux的工作站,服务器servers等等。这些设备根据其作用不同可以被称为主机host或者端系统end system。
端系统通过通信链路communication link和分组交换机packet switch连接到一起。发送数据时,发送端系统将数据分段,并为每段加上首...
分类:
Web程序 时间:
2014-05-09 21:54:28
阅读次数:
401
一、数学库
1. 随机数
math.randomseed(os.time()); -- 设置随机种子
for i=1, 100 do
print(math.random(-1000,1000)); -- 随机区间 [-1000,1000], math.random(1000) 表示 [1,1000]
end;
2. 最大,最小值
math.max...
分类:
其他好文 时间:
2014-05-09 20:58:11
阅读次数:
669
转载地址:http://www.2cto.com/database/201212/176781.html触发器是MySQL响应以下任意语句而自动执行的一条MySQL语句(或位于BEGIN和END语句之间的一组语句):
www.2cto.com DELETE; INSERT; ...
分类:
数据库 时间:
2014-05-09 19:41:03
阅读次数:
441