Respuesta :
write a method in the hashintset class called equals that accepts another hash set as a parameter and returns true if the two sets contain exactly the same elements.
Code is:
public boolean equals(Object object) {
if(object instanceof HashIntSet) {
HashIntSet set = (HashIntSet) object;
if(size != set.size())
return false;
for(int i = 0; i < elementData.length; i++) {
Node current = elementData[i];
while(current != null) {
if(!set.contains(current.data))
return false;
current = current.next;
}
}
return true;
}
return false;
}
Define a parameter.
One of the bits of data supplied as input to a function is referred to by a parameter, a special sort of variable. These pieces of information represent the values of the arguments used to call or invoke the function. A named variable supplied into a function is what is commonly referred to as a parameter. Functions import arguments using parameter variables. For example: function example(parameter) { console.
To learn more about parameters, use the link given
https://brainly.com/question/13151723
#SPJ4