iamはtxtファイルから得意先レコードを表示し、昇順で表示することになっています。最初の部分がありますが、sorting.hereを把握できません。ソート順にリストを取得するためのメソッドpublicボイド追加(顧客newNode、int型ダミー)実装されたリンクリストをソート
public void add(Customer newNode, int dummy)
{
if (head == null) // The first node
{
head = tail = this;
head.setData(newNode); size=1;
return;
} //************need to figure this out
CustomerList t = new CustomerList();
head.setNext(temp);
getHead().getNext();
head = temp;
//this is the part am trying to figure out
++size;
} // add
// Append the new node to the end of list
public void add(Customer newNode)
{
if (head == null) // The first node
{
head = tail = this;
head.setData(newNode);
size=1;
return;
}
CustomerList temp = new CustomerList(newNode);
tail.setNext(temp);
getHead().getNext();
tail = temp;
++size;
} // add
// retrieve a specific node by index
// The index starts with 0
public Customer get(int which)
{
if (which > size-1)
return null;
if (size < 0)
return null;
CustomerList temp = head;
for (int k=0; k < size; ++k)
{
if (which == k)
break;
temp = temp.getNext();
}
return temp.getData();
} // get
コレクションやアルゴリズムなどの「標準的なJava」を使用することは許されていますか、それともあなた自身で行うことはできますか? – John3136