A*(A星)算法python实现 代码段

/usr/bin/python # vim:set fileencoding=utf-8 # 在春节放假前两天我偶然看到了A*算法,感觉挺有意思。正好放假前 # 也没有什么事情,就花了一个下午写出算法的骨架,节后又花了半天 #

gww3 2015-05-13   1891   0
算法  

Mybatis批量更新 经验

Mybatis批量更新 批量操作就不进行赘述了。减少服务器与数据库之间的交互。网上有很多关于批量插入还有批量删除的帖子。但是批量更新却没有详细的解决方案。 实现目标 这里主要讲的是1张ta

jopen 2014-10-10   39319   0

长微博生成工具PHP源码 根据文字生成长微博图片 代码段

php error_reporting(7); define('ROOT', getcwd()); define('BASEDIR', parse_url($_SERVER['REQUEST_URI']

dy223 2015-03-26   2520   0
PHP  
P170

m0n0wall 中文手册 文档

m0n0wall 中文手册 作者: Chris Buechler Manuel Kasper 译文:Ben Zeng m0n0wall 的作者是 Manuel Kasper。大部分文档由 Chris Buechler

clbus 2014-07-26   669   0
P170

m0n0wall 中文手册 文档

m0n0wall 中文手册 作者: Chris Buechler Manuel Kasper 译文:Ben Zeng m0n0wall 的作者是 Manuel Kasper。大部分文档由 Chris Buechler

csnetstar 2012-06-21   1526   0

php 批量删除mySQL数据库记录 经验

php #Usage: php mysql_rmByKey.php

jopen 2014-03-26   24082   0

PHP多线程批量采集下载图片的实现代码 代码段

if(count($matches[$k][3])>0){ $dataimg = $img->Curl_http($matches[$k][3],'20');//全部图片数据二进制 $j = 0; foreach ((array)$dataimg

phpw34 2015-04-21   4571   0
PHP  

php 批量过滤post,get敏感数据 代码段

//php 批量过滤post,get敏感数据 if (get_magic_quotes_gpc()) { $_GET = stripslashes_array($_GET); $_POST = str

ngww 2015-04-23   1282   0
PHP  

php批量递归删除文件夹以文件 代码段

php自带的rmdir,只能删除空目录,这个rrmdir就可以递归删除目录及目录下的所有文件 function rrmdir($dir) { if (is_dir($dir)) { $objects =

pjp 2015-05-10   833   0
PHP  

PHP二维码扩展库 exqrcode 经验

一个php扩展,调用libqren库,生成二维码图片,可以生成一般文本、url、短信息、电话、电子名片等。 安装环境:linux,php5.3 外部库支持libqrencode,libpng

jopen 2012-08-31   19974   0

模拟帝国时代的游戏,0 A.D. Alpha 8 发布 资讯

0 A.D 是由 WIldfire Games 开发的免费跨平台游戏,支持 Windows, Mac OS X和Linux。 近日它发布了 alpha 1 版本,代号为 “Argonaut”,这个版本

jopen 2011-12-24   13390   0
游戏  

PHP随机颜色生成 代码段

for($i = 0 ; $i < 6 ; $i++) { $randNum = rand(0 , 15); switch ($randNum) { case 10: $randNum = 'A'; break;

md3c 2015-01-04   1068   0
PHP  

php生成图片缩略图类 代码段

php /** * @abstract 生成图片的缩略图,可以指定任意尺寸,生成的图片为png格式 * @example * $file = 'test.png'; * $th =new Thumbnail();

n6bg 2015-04-29   1003   0
PHP  

php随机密码生成 代码段

//vowels $a = $c.$v; //both //use two syllables... for($i=0;$i < 2; $i++){ $pw .= $c[rand(0, strlen($c)-1)];

jphp 2015-05-11   924   0
PHP  

PHP图表生成库,PHPlot 5.8.0 发布 资讯

PHPLOT 是一个用来创建图表的PHP图形类,需要 PHP5 的支持。PHPLot使用PHP的GD扩展来生成 PNG/GIF/JPEG 格式图片。 PHPlot 5.8.0 发布,该版本新增 streaming

openkk 2012-04-08   9751   0
PHP  

JSON 解析/生成库:php-yajl 经验

php-yajl 是简单快速的 JSON 解析和生成库,YAJL(Yet Another JSON Library),绑定 PHP 扩展。 安装: $/path/to/phpize $./conf

jopen 2015-12-28   35071   0

php上传图片生成缩略图 代码段

php function createThumbnail($imageDirectory, $imageName, $thumbDirectory, $thumbWidth, $quality){

eb5y 2015-01-06   1383   0
PHP  

PHP原比例生成缩略图 代码段

php $image = "jiequ.jpg"; // 原图 $imgstream = file_get_contents($image); $im = imagecreatefromstring($imgstream);

phpfg 2015-01-17   1183   0
PHP  

PHP自动生成表单的Form类 代码段

php //Form.php class form { var $layout=true;//是否使用表格布局 var $action;//表单要提交到的URL var $method; var $enctype="";

n672 2015-02-07   13000   3
PHP  

PHP生成图片缩略图 代码段

要使用PHP生成图片缩略图,要保证你的PHP服务器安装了GD2图形库 使用一个类生成图片的缩略图 //使用如下类就可以生成图片缩略图, php class resizeimage { //图片类型

wdfd 2015-03-27   945   0
PHP  
1 2 3 4 5 6 7 8 9 10