首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴暗黄的小台灯的代码贴全部
/*

折半查找
*/


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
1
暗黄的小台灯