返す複数の配列を追加するには?
配列a
と配列output
を返したいと思います。
[] [] int型私はこの方法で追加されますが、私はJavaの静的intメソッドで複数の配列を返す方法は?
public class Bubble
{
public static int[][] bubbles(int[]a)
{
int output[]= new int [2 ];
Random g = new Random();
a = new int [4];
for (int i = 0 ; i<a.length ; i++)
{ a[i] = g.nextInt(4)+1;}
int count1=0;
for (int i = 0 ; i<a.length ; i++)
{ a[i] = g.nextInt(4)+1;}
int swap = 0;
for (int pass = 0; pass < a.length ; pass++)
{
for (int i = 0; i < a.length - 1; i++)
{
count1 ++;
if (a[ i ] > a[ i + 1 ])
{
int temp = a[i];
a[i] = a[i + 1];
a[i + 1] = temp;
swap++;
output[0]=swap;
output[1]=count1;
}
}
}
return (output);
}
}
は、以下を参照してください。https://stackoverflow.com/help/someone-answers – c0der