CS计算机代考程序代写 Java b’c0fd27a995f5736e860e14794c753d078ab90d’

b’c0fd27a995f5736e860e14794c753d078ab90d’

blob 2821�package programmingexample4;

import java.util.ArrayList;
import java.util.Iterator;

/**
* A bag implemented using an ArrayList.
*
* @invariant for all c in counts, c.getCount() > 0
*
* @param
*/
public class ArrayListBag implements Bag {

private ArrayList> counts;

/**
* Create a new empty bag.
*/
public ArrayListBag() {
this.counts = new ArrayList>();
}

private Count getCount(Object o) {
for (Count c : counts)
if (c.getElement().equals(o))
return c;
return null;
}

@Override
public void add(E e) {
add(e,1);
}

@Override
public void add(E e, int n) {
Count c = getCount(e);
if (c != null) {
c.incrementCount(n);
} else if (n > 0) {
counts.add(new Count(e, n));
}
}

@Override
public void remove(E e) {
remove(e, 1);
}

@Override
public void remove(E e, int n) {
Count c = getCount(e);
if (c != null) {
c.decrementCount(n);
if (c.getCount() <= 0) { // This works even if Count doesn't override equals() counts.remove(c); } } } @Override public int count(Object o) { Count c = getCount(o);
if (c != null)
return c.getCount();
return 0;
}

@Override
public int size() {
int sz = 0;
for (Count c : counts) {
sz += c.getCount();
}
return sz;
}

@Override
public Bag sum(Bag bag) {
Bag result = new ArrayListBag<>();
for (Count c : this)
result.add(c.getElement(), c.getCount());
for (Count c : bag)
result.add(c.getElement(), c.getCount());
return result;
}

@Override
public Iterator> iterator() {
return counts.iterator();
}

/**
* For this method, it should be possible to compare all other possible bags
* for equality with this bag. For example, if an ArrayListBag and a
* LinkedListBag both contain the same number of each element they
* are equal. Similarly, if a Bag contains the same elements as a
* Bag they are also equal.
*/
@Override
public boolean equals(Object o) {
if (o == null) return false;
if (this == o) return true;

if (o instanceof Bag) {
Bag b = (Bag) o;
if (size() != b.size()) return false;
for (Count c : b) {
if (count(c.getElement()) != c.getCount())
return false;
}
}
return true;
}
}