所以我有一个程序读取文件,将信息添加到数组中,然后使用交换排序按字母顺序对数组进行排序。问题是我误解了赋值并需要在输入数组时对字符串进行排序,而不是在输入后使用单独的排序方法。继承人我所拥有的:
public class NumberCollection2
{
String nextName;
int nextNumber;
private Person[] people = new Person[50];
private int size =0;
public void load()
{
try
{
Scanner in = new Scanner(new File ("numbers.txt"));
while (in.hasNextLine())
{
nextName = in.next();
nextNumber = in.nextInt();
people[size]=new Person(nextName, nextNumber);
size++;
in.nextLine();
}
//use exchange sort to sort in ascending alphabetical order
int i, j;
for ( i = 0; i < size - 1; i++ )
{
for ( j = i + 1; j < size; j++ )
{
if ( people[ i ].getName().compareTo(people[ j ].getName()) > 0 )
{
Person temp = people [ i ];
people [ i ] = people [ j ];
people [ j ] = temp;
}
}
}
}
这完全有效但我的教授需要对它进行排序,因为它被输入到数组“人”中,我不知道如何处理它。任何建议/帮助都会很棒,谢谢!
这是我从我的教授那里得到的电子邮件:“要获得完全的学分,你必须在读入数据时将每个项目插入数组中的排序位置。不能全部阅读并调用排序常规。”
答案 0 :(得分:0)
“我的教授需要在输入时对其进行分类”
这是一个链表,而不是数组。
因此,您只能查看堆栈/队列中的当前项(FILO / FIFO)。
你是教授可能意味着按照输入方式打印清单。
您可以通过将列表创建为队列来完成此操作。
Java有一个可以使用的调用,称为Queue
。还有Stack
和LinkedList
。