logo Practice-It logo

HashSetEquals

Related Links:
Author: Marty Stepp (on 2013/02/03)

Write a method named equals2 that could be placed inside the HashSet2 class. This method accepts any object reference o as a parameter and returns true if o refers to another HashSet2 object containing exactly the same set of items as this set. It does not matter if the two sets have the same internal hash table length or element ordering in their linked lists, so long as exactly the same overall elements are stored in both sets; no more, no less. For example, if a set s1 contains [a, b, c] and another set s2 contains [b, c, a], the call of s1.equals(s2) would return true. If set s2 instead contained [b, c, d] or [b, c] or [b, c, d, a] or any other contents not exactly equal to s1's set of elements, your method would return false.

You are allowed to call methods on your set and/or the other set as needed. Do not modify the set passed in. This method should run in O(N) time where N is the number of elements in either of the two sets.

(NOTE: To be compatible with Practice-It and avoid conflicting with Java's java.util.HashSet, our HashSet is renamed HashSet2 here, and equals is renamed to equals2 to avoid conflicting with Java's existing equals method.)

Type your solution here:


This is a partial class problem. Submit code that will become part of an existing Java class as described. You do not need to write the complete class, just the portion described in the problem.

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.