2

プロジェクトのために、重複する可能性のある同種の値 (null を除く任意の Java オブジェクト) の順序付けされていないコレクションであるバッグ データ構造 (マルチセットとも呼ばれます) を実装することになっています。私はインターネットで広範な検索を行いましたが、List のようなものの代わりに配列を使用することに頭を悩ませており、クラスで配列を使用するための構文をよく理解していません。

UnsupportedOperationException をスローすることによって指摘されている場合を除いて、java.util.Collection のすべてを実装する必要があります。はい、配列を使用する必要があり、配列に追加すると、容量が 10 増加する必要あります。うまくいけば、私が追加した他のすべてもスムーズに実行されます. コメント ブロックに API 定義を含めました。どんな入力でも本当に役に立ちます。

マークが以下で尋ねたように、特定の要素を検索するためにバッグを検索する方法がわかりません。

import java.util.Collection;
import java.util.Iterator;

class Bag<T> implements Collection<T>{
private T[] array;
public int bagSize;


public Bag(){
    array=(T[])new Object[10];
}
public Bag(Collection<T> other ){
    //Not sure what to put here
    //creates a bag containing all of the items passed to it as a Collection<T>
}

public int size() {
    return bagSize; 
}

public boolean isEmpty() {
    if(size()==0)
        return true;
    else
        return false;
}


public boolean contains(Object o) {
    //Not sure what to put here
    /*Returns true if this collection contains the specified element. More formally,
    returns true if and only if this collection contains at least one element e such 
    that (o==null ? e==null : o.equals(e)). */
    return (o.toArray()==null ? this.toArray()==null : o.toArray() == this.toArray());
    }

}


public Iterator<T> iterator() {
    throw new UnsupportedOperationException("not implemented.");
}

public Object[] toArray() {
    return array;

}

public <T> T[] toArray(T[] a) {
    throw new UnsupportedOperationException("not implemented.");
}

public boolean add(T e) {
   if(bagSize>=array.length)
       return false;
   else
   {
       ensureCapacity(bagSize+10);
       array[bagSize]=e;
       bagSize++;
       return true;
   }

}

public boolean remove(Object o) {
    for(int i=0; i<bagSize; i++)
        if(array[i].equals(o)){
            for(int j=i; j<bagSize-1; j++)
                array[j]=array[j+1];
            bagSize--;
            return true;
        }
    return false;

}

public boolean containsAll(Collection<?> c) {
    throw new UnsupportedOperationException("not implemented.");
}

public boolean addAll(Collection<? extends T> c) {
    //Not sure what to put here
    /*Adds all of the elements in the specified collection to this collection  
    (optional operation). The behavior of this operation is undefined if the specified
    collection is modified while the operation is in progress. (This implies that the
    behavior of this call is undefined if the specified collection is this collection,
    and this collection is nonempty.) */
}

public boolean removeAll(Collection<?> c) {
    throw new UnsupportedOperationException("not implemented.");
}

public boolean retainAll(Collection<?> c) {
    throw new UnsupportedOperationException("not implemented.");
}

public void clear() {
    //Not sure what to put here
    /*Removes all of the elements from this collection (optional operation). The
    collection will be empty after this call returns (unless it throws an exception).*/
}

@Override
public int hashCode(){
    throw new UnsupportedOperationException("not implemented.");
}

@Override
public boolean equals(Object e) {
    if (e == null) {
        return false;
    }
    if (getClass() != e.getClass()) {
        return false;
    }
    final Bag<T> other = (Bag<T>) e;
    return true;
}

public void ensureCapacity(int minCapacity){
    T[] biggerArray;
    if(array.length<minCapacity){
        biggerArray=(T[]) new Object[minCapacity];
        System.arraycopy(array, 0, biggerArray, 0, bagSize);
        array=biggerArray; 
    }
}
4

2 に答える 2

3

あなたが何を持っているのか混乱していますcontains...メソッドを持たない を呼び出しtoArray()ています。これは、あなたがやろうとしていることについて根本的な誤解があることを示唆しています。それにもかかわらず、コレクションに特定のオブジェクトが含まれているかどうかを確認する方法を実際に知っているようです。オブジェクトを見つけるにはオブジェクトを見つける必要があるからです。メソッドは、同じオブジェクトで呼び出された場合とまったく同じ値を返します。そこから取り組んでいただけると思います。ObjecttoArray()removeremovebooleancontains

(ちなみに、あなたのremoveメソッドにはメモリリークを引き起こす可能性のあるバグがあります...配列内のオブジェクトを1だけ左にシフトすると、コレクションに含まれなくなった配列スロットがnull.)

addAll非常に単純です...Collectionすべて追加する必要がある要素が与えられ、要素をadd追加できるメソッドがあります。これらは一緒に行きます。(addAll2番目のコンストラクターも実装するために本当に必要なのはこれだけです。)

clearも簡単です。それを呼び出した後、配列はオブジェクトへの参照を持たず、バッグのサイズは 0 である必要があります。それを行う方法を考えてみてください。

の実用的な実装は、コレクションを利用して多くのメソッド ( を含む) を実装できるのでiterator()かなり役立ちます(便利な抽象クラスがこれを行います) 。おそらく使用しません。CollectionclearIteratorAbstractCollectionclear

あと、ちょっとメモ。

public boolean isEmpty() {
    if(size()==0)
        return true;
    else
        return false;
}

次のように書くとよいでしょう:

public boolean isEmpty() {
  return size() == 0;
}

size() == 0はすでにboolean式であるため、/ifelse冗長です。

于 2010-11-04T03:43:36.043 に答える
0

グアバの Multiset 実装を参照として使用できます。それはあなたにいくつかのアイデアを与えるでしょう http://guava-libraries.googlecode.com/svn/trunk/src/com/google/common/collect/

于 2010-11-04T01:50:35.263 に答える