文章列表
import javax.swing.JOptionPane;
class heapsort
{
public static int size; //matrix size
public static int heap_size; //heap size
public int left(int i) //look for left child
{
return 2*i;
}
public int right(int i) //look for right child
{
r ...
- 2006-12-03 09:38
- 浏览 623
- 评论(0)
import javax.swing.JOptionPane;
class heapsort
{
public static int size; //matrix size
public static int heap_size; //heap size
public int left(int i) //look for left child
{
return 2*i;
}
public int right(int i) //look for right child
{
r ...
- 2006-12-01 11:13
- 浏览 439
- 评论(0)