Generating random words in Java?

前端 未结 6 1739
抹茶落季
抹茶落季 2021-02-14 09:47

I wrote up a program that can sort words and determine any anagrams. I want to generate an array of random strings so that I can test my method\'s runtime.

publi         


        
6条回答
  •  我在风中等你
    2021-02-14 10:44

    Do you need actual English words, or just random strings that only contain letters a-z?

    If you need actual English words, the only way to do it is to use a dictionary, and select words from it at random.

    If you don't need English words, then something like this will do:

    public static String[] generateRandomWords(int numberOfWords)
    {
        String[] randomStrings = new String[numberOfWords];
        Random random = new Random();
        for(int i = 0; i < numberOfWords; i++)
        {
            char[] word = new char[random.nextInt(8)+3]; // words of length 3 through 10. (1 and 2 letter words are boring.)
            for(int j = 0; j < word.length; j++)
            {
                word[j] = (char)('a' + random.nextInt(26));
            }
            randomStrings[i] = new String(word);
        }
        return randomStrings;
    }
    

提交回复
热议问题