我有很多代码,但这是我认为的相关部分。
我有一个大小为 10 的数组作为存根,我事先不知道我可能会得到什么大小的数组,只是它不能大于 10。
int[] arrTracker = new int[10];
arrTracker = MyLibrary.SearchForABookISBN( true, AShelf, userParsedArr, aUserTitle );
for ( int j = 0; j < 10; j++)
{
pln(AShelf[arrTracker[j]]);
}
理论上,在上面的代码中,一旦我有了我的数组,我就会遍历它并显示内容(这基本上就是我在 MyLibrary 对象数组中找到我正在搜索的书的位置。
“userParsedArr”是用户输入的 ISBN。
public int[] SearchForABookISBN ( boolean aFlag, Book[] anArray, int[] AnISBN, String aTitle )
{
//This one was difficult.
int length = anArray.length;
int[] AnotherArr = new int[0];
int[] AnotherArrTemp = new int[0];
int[] AnotherArrNew = new int[0];
boolean UFoundMe = false;
if ( aFlag == true )
{
for ( int i = 0; i < length; i++)
{
//Assume we find the ISBN
if ( ( anArray[i].Title.equals(aTitle) ) )
{
int counter = 0;
for ( int j = 0; j < 9; j++)
{
if (anArray[i].ISBN[j] == AnISBN[j])
{
counter++;
}
else
{
UFoundMe = false;
break;
}
if ( counter == 9 )
{
UFoundMe = true;
}
}
if ( UFoundMe == true )
{
//Create our 'main' tracker at 1 + size of previous array.
AnotherArrNew = new int[1 + AnotherArr.length];
if ( AnotherArrTemp.length > 0 )
{
//Copy values into a temp array.
//Make a new temp array
for ( int m = 0; m < AnotherArr.length - 1; m++ )
{
AnotherArrNew[m] = AnotherArrTemp[m];
}
}
AnotherArrNew[(AnotherArrNew.length) - 1] = i;
AnotherArrTemp = new int[AnotherArrNew.length];
for ( int n = 0; n < AnotherArr.length; n++ )
{
AnotherArrTemp[n] = AnotherArrNew[n];
}
System.out.println(anArray[i]);
}
}
}
}
return AnotherArrNew;
}
}
这里的基本想法是我创建一些空白数组,然后一旦我找到一本书,我会创建一个更大的新数组并丢弃旧数组,将内容传输到临时数组,然后仔细备份我之前所做的删除旧的新数组以使其更大。
所以大概说我有 10 本书,其中 3 本书的标题和 ISBN 相同。我希望返回一个 3 的数组,但我事先不知道,因为如果给我 20 本书并且它们都相同怎么办?
MyLibrary.SearchForABookISBN(true, AShelf, userParsedArr, aUserTitle).length 是否可以让我提前知道数组的大小?所以只需声明:
int aLength = MyLibrary.SearchForABookISBN( true, AShelf, userParsedArr, aUserTitle ).length
int[] arrTracker = new int[aLength];