gpt4 book ai didi

c - 如何让程序比较两个数组然后查看两个数组是否具有相同的字符

转载 作者:太空狗 更新时间:2023-10-29 16:05:37 24 4
gpt4 key购买 nike

这是作业所以我必须编写一个简单的拼字游戏。我在整个程序中都有评论,但我会在这篇文章的结尾解释我想做什么。

 #include <stdio.h> 
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
#define N 96

int main() {
srand((unsigned) time(NULL));
int letter_set = N , size_let = 7 , num_let = 7 , max_size_word = 7 , size_letter_set = 7, size_word, arr[N];
char word [7];
printf("This program plays a game of scrabble.\n");

generate_letter_set(letter_set , size_let , num_let, arr);
read_word(word, max_size_word);
check_word(word, size_word, letter_set, size_letter_set, arr);

return 0;
}


void generate_letter_set(int letter_set[] , int size_let , int num_let, int arr[])
{


const char let[26] =
{'K','J','X','Q','Z','B','C','M','P','F','H','V','W','Y','G','L','S','U','D','N','R','T','O','A','I','E'};

int freq[26] =
{ 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 4, 4, 4, 4, 6, 6, 6, 8, 9, 9, 12 };

const int score[26] =
{ 5, 8, 8, 10, 10, 3, 3, 3, 3, 4, 4, 4, 4, 4, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1};

int index = 0;
for(int i = 0 ; i < 26 ; i++) {
for(int f = 0 ; f < freq[i]; f++) {
arr[index++] = let[i]; //All the 96 letters are stored in let[i]
//printf("%c " , let[i]); // Created the letter bank for all the letters

}
}

int letter;
printf("Your letters are: ");
for(int l = 0; l < 7; l++){
letter = rand() % 97; //Gives the user their letters all the letters are from arr[letter]
printf("%c ", arr[letter]);


}

}
int read_word(char word[], int max_size_word) {

{
int c = 0, let_count = 0;
printf("\nPlease enter your word: ");
char input = toupper(getchar());
for(c = 0; c < max_size_word; c++) {

if(input != '\n')
{ word[c] = input;
let_count++;
}
else if(input == '\n')
input = toupper(getchar()); //The word the user entered is in word[c]
}

return let_count;
}

}
int check_word(char word[], int size_word, int letter_set[], int
size_letter_set, int arr[]) {
//Figure out how to pass two arrays through the functions
//Pass word[c] into this function
//Pass arr[letter] into this function then compare the two arrays
//Make it so the user has to enter less than 7 chars
for (int a; a < 7; a++) {

if (word[a] != arr[a]) {
printf("Use your letters");
}

}


return 1;
}

所以我在这个程序中唯一的问题是如何让我的“check_word”功能发挥作用。此函数必须检查用户是否输入了提供的字母。在拼字游戏中,你得到 7 个字母,并且包含给用户的 7 个字母的数组存储在 (arr[]) 然后“read_word”函数中的字母是用户进入。输入的字母存储在 word[] 中。所以我的直觉是检查用户是否真的使用了 arr[] 中的字母是做一个条件语句来比较两个数组 arr[]word[ ]。但是我意识到这会检查用户是否真的使用了每个字母,而我只需要检查用户是否使用了任何未提供的字母。我迷失了如何实现这一目标,我们将不胜感激!如果需要任何澄清,也请在评论中让我知道,我也为这个巨大的帖子道歉。

最佳答案

So my only issue in this program is how I'm going to get my 'check_word' function to work. This function has to check if the user entered the letters that are provided. In a game of scrabble you get 7 letters, and the array that has the 7 letters given to the user is stored in (arr[]) Then the in the 'read_word' function is the letters the user entered.

有很多方法可以解决这个问题。这是一种方法。构建提供给用户的字母的频率表。因此,如果已向用户提供:R S T L N E E,则 freq['R'] = 1freq['S] = 1freq['T'] = 1, freq['L'] = 1, freq['N'] = 1频率 ['E'] = 2freq 中的所有其他值都是 0。然后当用户输入一个单词时,您可以遍历每个字母并从该字母的频率表中减去 1。如果任何值小于 0,则该词无效。

但是,您的代码中还有另一个关于随机输入的问题——即:将字母处理给用户。 @Weathervane 在那里发表了一些可能有帮助的评论。考虑将所有字母放入 set 中(或者更准确地说是 bag——因为字母可以重复)然后从包里随机抽出一封信。重复 7 次(或直到袋子变空)。

关于c - 如何让程序比较两个数组然后查看两个数组是否具有相同的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46943133/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com