我只想使用遞歸計算字符串中的元音,但它不起作用。計算字符串中元音的數量
#include <stdio.h>
#include <string.h>
#define SETSIZ 10
#define TRUE 1
#define FALSE 0
int is_empty(const char *set);
int is_element(char vowel, const char *set);
int is_vowel(const char *vowels, const char *set);
int main(void)
{
int count = 0,i;
char vowels[11] = {'A', 'a', 'E', 'e', 'I', 'i', 'O', 'o', 'U', 'u', '\0'}, set[SETSIZ] = "mustafa";
for(i=0;i<strlen(set);i++){
if(is_vowel(vowels, set))
count += 1;
}
printf("%s has %d vowels",set, count);
return(0);
}
int is_empty(const char *set)
{
return(set[0] == '\0');
}
int is_element(char vowel, const char *set)
{
int ans;
if(is_empty(set))
ans = FALSE;
else if (vowel == set[0])
ans = TRUE;
else
ans = is_element(vowel, &set[1]);
return(ans);
}
int is_vowel(const char *vowels, const char *set)
{
int ans, i = 0;
if(is_empty(vowels))
ans = FALSE;
else if(is_element(vowels[0], set))
{
printf("**");
ans = TRUE;
}
else
{
printf("--");
ans = is_vowel(&vowels[1], set);
}
return(ans);
}
在'main'中循環'set'(它看起來不在那個範圍內),並且總是把相同的東西傳遞給'is_vowel'。你從不使用循環計數器'i'。 – 2011-05-31 11:24:28
'set'在滾動區域中定義。我還認爲它一開始沒有定義。到OP:@paranoidgnu - 限制行長度爲80個字符:) – pmg 2011-05-31 11:28:21