Skip to content

Instantly share code, notes, and snippets.

@coffeejay
Created January 15, 2014 15:33
Show Gist options
  • Save coffeejay/8438359 to your computer and use it in GitHub Desktop.
Save coffeejay/8438359 to your computer and use it in GitHub Desktop.
public int getFrequencyOf(T anEntry){
int counter = 0;
for (int i = 0; i < this.getCurrentSize(); i++){
if (anEntry.equals(bag.get(i))){
counter ++;
}
}
return counter;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment