码迷,mamicode.com
首页 > 编程语言 > 详细

java递归排序

时间:2018-01-17 01:08:05      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:admin   new   return   mem   div   方法   todo   array   post   

public class TestNativeOutOfMemoryError
{
static int[] aa = new int[] {1, 2, 3, 4};

static int[] bb = new int[aa.length];

public static void main(String[] args)
{
getArray(0);
for (int i = 0; i < bb.length; i++)
System.out.println(bb[i]);

}

/**
* 递归算法,把整形数组逆序输出
*@Title: getArray
*@Description: TODO(这里用一句话描述这个方法的作用)
*@Author: Administrator
*@Since: 2018年1月16日下午6:41:05
*@param: @param index递归算法起始位置
*@return void
*/
static void getArray(int index)
{
while (index < aa.length)
{
bb[index] = aa[aa.length - 1 - index];
index++;
getArray(index);
}
}
}

java递归排序

标签:admin   new   return   mem   div   方法   todo   array   post   

原文地址:https://www.cnblogs.com/nizuimeiabc1/p/8298191.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!