Created
January 15, 2014 15:33
-
-
Save coffeejay/8438359 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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