/**
* author Akalius Kung 2008-2-9
**/
public class HeapSort {
private int heapLen;
private int[] sort(int[] array){
heapLen=array.length;
buildHeap(array); // init the heap
for(int i=heapLen-1;i>0;i--){ // swap root and last node, up to down
swap(array,i,0);
heapLen--;
heapify(array,0); // reheapify the root node from 0 to n-1
}
return array;
}
private void buildHeap(...
Java版N皇后算法
回溯法,代码如下:
/**
* author Akalius Kung 2008-2-8
**/
public class Queen {
private int[] grids; // location in each row, index is each row, array value is location of each queen
private int n;
private static int sum;
public Queen() {
init(8);
}
public Queen(int n) {
this.n = n;
grids=new int[n];
for(int i=0;i<n;i++){
grids[i]=0;
}
}
private void init(int n){
...
使用OTA来发布你的J2ME程序
使用OTA来发布你的J2ME程序
众所周知,J2ME程序发布的形式主要有:OTA、数据线传输、红外和蓝牙传输等。这里简单说说如何通过OTA来发布你的程序。
OTA是Over The Air的简写,也就是通过网络下载,这是主要的发布形式之一。现在的百宝箱都是采用这种形式。
使用OTA来发布程序,需要如下几个步骤:
1、在你的WEB服务器上添加对于jad和jar文件的MIME支持。
后缀名:jad
MIME类型:text/vn...
电子钟表
obj=new Object;obj.clockfile="0032-white.swf";obj.TimeZone="GMT0800";obj.width=130;obj.height=130;obj.wmode="transparent";showClock(obj);
WordPress 程序撰写标准
WordPress Coding Standards
From WordPress Chinese
Jump to: navigation, search
Some legacy parts of the WordPress code structure for PHP markup are inconsistent in their style. WordPress is working to gradually improve this by helping users maintain a consistent style so the code can remain clean and easy to read at a glance.
Keep the following points in mind when writing cod...
Wordpress简明使用指南
从今年9月到现在,我用Wordpress也有大约3个月了。现将自己使用中的一些体会分简介、安装、一般使用、主题、插件、代码修改等几个部分逐一概述如下。
1. 简介
Wordpress是全球最棒的免费个人内容(Blog)发布平台之一,其下载量即将突破1000000(详细数据请参考Wordpress Download Counter)。它用经典的PHP+MySQL搭建而成,两者都是开源的软件,其中PHP用于编写相应的操作代码、生成页面,MySQL数据库则用于保...
SAX_Parser 介绍 实例 –学习笔记 (xml 解析)
读取xml主要有两种方法
1. 标准方法是 DOM(”文档对象模型”)。 这种方法需要读取整个文件并将它存储到树结构中,因而效率不高、缓慢,并且会过度使用资源
2 . SAX , 一种替代方法是使用 Simple API for XML 或 SAX。SAX 允许正在读取文档时处理该文档,这避免了在采取操作之前需要等待存储文档的 所有内容。
解析器将事件(譬如,元素的开始或结束)发送给处理信息的事件处理程序。然后,应用程序自己...