/*
折半查找
*/
class Demo
{
public static void main(String args[])
{
int arr[]={2,4,7,9,15,37};
int index=halfSearch(arr,15);
......................
阅读全部 | 2013年9月28日 08:49
/*
冒泡排序算法:
*/
class ArrayTest
{
public static void main(String args[])
{
int []arr={9,6,25,37,1,8};
System.out.println("排序前数组为:");
printArray(arr);
......................
阅读全部 | 2013年9月26日 21:59
class ArrayTest
{
public static void main(String args[])
{
int arr[]={5,1,6,4,2,8};
System.out.println("排序前数组为:");
printArray(arr);
selectArray(arr);
System.out.println("排序后数组为:");
printArray(arr);
......................
阅读全部 | 2013年9月24日 23:10