ios 回文函数
Posted fei619730
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios 回文函数相关的知识,希望对你有一定的参考价值。
回文函数
-(BOOL)palindromeString :(NSString *)str
for(NSInteger i=0,j= str.length-1;i<=(str.length-1)/2;i++,j--)
if( [str characterAtIndex:i] != [str characterAtIndex:j--])
break;
if(i >=j)
return YES;
return NO;
以上是关于ios 回文函数的主要内容,如果未能解决你的问题,请参考以下文章