我对递归很陌生。我需要编写两个函数。到目前为止,我写了一个,它有权查找字符串的长度。然而,第二个,即:在数组中找到重复字符被证明是非常困难的。我在网上搜寻了一些例子,我已经做了很多阅读,但到目前为止还没有。因此,如果您能指出我正确的方向,我将不胜感激。
谢谢
//length( ) -- this function is sent a null terminated array of characters.
//The function returns the length of the "string".
long slength (const char ntca[])
{
int length = 0;
if (ntca[length] == '\0'){
return 0;
}
else{
return slength(ntca+1)+1;
}
}
//countall( ) -- This function is sent a null terminated array of characters
//and a single character. The function returns the number of times the character
//appears in the array.
long countall (const char ntca[],char letter){
int position = 0;
int counter = 0;
long length = slength(ntca);
if (length == 0)
return 0;
else if (ntca[position]==letter)
return 1 + countall(ntca-1,letter);
else
return countall(ntca,letter);
}