Tagged Questions

2
votes
6answers
84 views

First time implementing a java interface, can't get a successful compile

I need to implement a bag data structure using the interface java.util.Collection. I'm not asking for help on the actual implementation of the data structure. I just can't get my program to compile. I ...
0
votes
2answers
626 views

Bag implementation as array in Java

I'm supposed to implement a bag data structure (also called a multiset), an unordered collection of homogeneous values (any Java object, excluding null) that may have duplicates, for a project. I've ...
0
votes
3answers
877 views

finding kth largest element in an array implemented bag

we have a collection of comparable held in a bag and have to find the kth largest element. I copied to a hashSet to remove duplicates then converted the hash set to an array to be sorted and ...
-1
votes
3answers
818 views

Bag Data Structure (Multiset) Class implemenation in Java Using Fixed Array

I've erased this question due to vagueness, and have asked a more specific one.