void reverse(Node* pHead)
{
if (pHead)
{
if (pHead->next)
{
reverse(pHead->next);
}
printf("%d",pHead->data);
}
}
void reverseStr(char str)
{
if (*str != '/0')
{
if (*(str+1) != '/0')
{
reverseStr(str+1);
}
printf("%c",*str);
}
}
int strLen(char str[])
{
if(*str == '/0')
return 0;
return (strLen(str+1) + 1);
}
链表相关函数
最新推荐文章于 2024-08-22 14:28:16 发布