C语言问题 哥哥姐姐帮帮忙
C语言问题 哥哥姐姐帮帮忙
日期:2007-08-30 00:05:23 人气:1
#include
#include
#include
int IsPalindrome(const char* beg, const char* end)
{
while(beg < end)
if(*beg++ != *--end)
return 0;
return 1;
}
inline void Swap(char* lhs, char* rhs)
{
char tmp = *lhs;