所以我在c#中制作了一个非常简单的单词生成器程序,效果相对较好.它根据用户定义的长度生成一个单词.
该算法为序列中的每个连续字母添加辅音然后是元音,这不是理想的,但对于基本单词效果很好.
我唯一的问题是,我告诉它在字母序列中添加一个"u"如果"q"出现在它之前,但无论我做了什么,它都会使这个词至少有一个字母太长.
我在上面的评论中用星号标记了我的问题区域.这是代码:
public void WordFinder()
{
string word = null;
int cons;
int vow;
//counter
int i = 0;
bool isword = false;
Random rnd = new Random();
//set a new string array of consonants
string[] consonant = new string[]{"b","c","d","f","g","h","j","k","l","m","n","p","q","r","s","t","v","w","x","y","z"};
//set a new string array of vowels
string[] vowel = new string[]{"a","e","i","o","u"};
while (isword == false)
{
word = null;
Console.WriteLine("Pick the length of a word");
int num = Convert.ToInt32(Console.ReadLine());
//set the counter "i" to 1
i = 1;
if (num%2 == 0)
{
while (i <= num)
{
if (num != 1)
{
// current consonant = random consonant
cons = rnd.Next(0, 20);
// get the consonant from the string array "consonant" and add it to word
word = word + consonant[cons];
// add 1 to counter
i ++;
//* if the consonant is "q"
if (cons == 12)
{
// add "u" right after it
word = word + vowel[4];
// add 1 to counter
i++;
}
}
vow = rnd.Next(0, 4);
word = word + vowel[vow];
i ++;
}
}
if (num % 2 != 0)
{
while (i <= num - 1)
{
//repeat same code as done to even length
if (num != 1)
{
cons = rnd.Next(0, 20);
word = word + consonant[cons];
i ++;
if (cons == 12)
{
word = word + vowel[4];
i ++;
}
}
vow = rnd.Next(0, 4);
word = word + vowel[vow];
i ++;
}
// if the length is not equal to 1
if (num != 1)
{
// add a consonant to the end of the word
cons = rnd.Next(0, 20);
word = word + consonant[cons];
}
//if the length is 1
else if (num == 1)
{
// pick a vowel
vow = rnd.Next(0, 4);
word = word + vowel[vow];
}
}
i = 1;
Console.WriteLine(word);
Console.WriteLine("Is this a word? (y/n)");
string q = Console.ReadLine();
q = q.ToLower();
//if the answer is yes, then it is a word and end the loop
if (q == "y" || q == "yes")
{
isword = true;
}
//if the answer is no try the loop again
else if (q == "n" || q == "no")
{
isword = false;
}
}
}
// main method
static void Main(string[] args)
{
Program prog = new Program();
prog.WordFinder();
//wait for user input
Console.ReadLine();
}
}
Run Code Online (Sandbox Code Playgroud)
Gre*_*reg 12
我重构了你的答案,经过一些调试我得到了它的工作.对不起,我不能只是做一个调整来解决它.我相信它不允许一个单词以"qu"或"q"结尾.
public void WordFinder()
{
bool isWord = false;
Random rnd = new Random();
string[] consonants = { "b", "c", "d", "f", "g", "h", "j", "k", "l", "m", "n", "p", "q", "r", "s", "t", "v", "w", "x", "y", "z" };
string[] vowels = { "a", "e", "i", "o", "u" };
while (isWord == false)
{
string word = "";
Console.WriteLine("Pick the length of a word");
int requestedLength = Convert.ToInt32(Console.ReadLine());
// Generate the word in consonant / vowel pairs
while (word.Length < requestedLength)
{
if (requestedLength != 1)
{
// Add the consonant
string consonant = GetRandomLetter(rnd, consonants);
if (consonant == "q" && word.Length + 3 <= requestedLength) // check +3 because we'd add 3 characters in this case, the "qu" and the vowel. Change 3 to 2 to allow words that end in "qu"
{
word += "qu";
}
else
{
while( consonant == "q")
{
// Replace an orphaned "q"
consonant = GetRandomLetter(rnd, consonants);
}
if (word.Length + 1 <= requestedLength)
{
// Only add a consonant if there's enough room remaining
word += consonant;
}
}
}
if (word.Length + 1 <= requestedLength)
{
// Only add a vowel if there's enough room remaining
word += GetRandomLetter(rnd, vowels);
}
}
Console.WriteLine(word);
Console.WriteLine("Is this a word? (y/n)");
string q = Console.ReadLine().ToLower();
if (q == "y" || q == "yes")
{
isWord = true;
}
}
}
private static string GetRandomLetter(Random rnd, string[] letters)
{
return letters[rnd.Next(0, letters.Length - 1)];
}
Run Code Online (Sandbox Code Playgroud)
编辑:然而,这仍然是非常不守规矩.如何生成随机字符串,然后在完成后用"qu"替换"q"?
public string WordFinder2(int requestedLength)
{
Random rnd = new Random();
string[] consonants = { "b", "c", "d", "f", "g", "h", "j", "k", "l", "m", "n", "p", "q", "r", "s", "t", "v", "w", "x", "y", "z" };
string[] vowels = { "a", "e", "i", "o", "u" };
string word = "";
if (requestedLength == 1)
{
word = GetRandomLetter(rnd, vowels);
}
else
{
for (int i = 0; i < requestedLength; i+=2)
{
word += GetRandomLetter(rnd, consonants) + GetRandomLetter(rnd, vowels);
}
word = word.Replace("q", "qu").Substring(0, requestedLength); // We may generate a string longer than requested length, but it doesn't matter if cut off the excess.
}
return word;
}
private static string GetRandomLetter(Random rnd, string[] letters)
{
return letters[rnd.Next(0, letters.Length - 1)];
}
Run Code Online (Sandbox Code Playgroud)