java - Array which holds the data of 9000 English Words (Pig Latin Game) -
I am working on a mini project to develop a pig Latin game. I have a text file that has approximately 9 000 English words. I've created a GUI that chooses a word from the list and changes it with some versions and asks the user to guess the words. What should be the best way to store 9000 English words? I do not want to use I / O!
An array of string objects are best, you are not modifying the size of the structure and you want to make quick use of any arbitrary element.
Comments
Post a Comment