题解 | #回文昵称#
回文昵称
https://www.nowcoder.com/practice/5ac63bfdf73c473d9dee7e3294551563
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s string字符串 * @return bool布尔型 */ #include <stdbool.h> bool num(char*s,int left,int right) { while(left<right) { left++; right--; if(s[left]!=s[right]) { return false; } } return true; } bool isPalindromeNickname(char* s ) { // write code here int i=0,j=0; int cnt=0; int A=strlen(s); for(i=0;s[i];i++) { while(j<A &&!('a'<=s[i]&&s[i]<='z')&&!('A'<=s[i] && 'Z'>=s[i])&&!('0'<=s[i]&&'9'>=s[i])&&!(' '==s[i])) { strcpy(&s[j],&s[j+1]); cnt=A; A--; j++; } } int B=num(s,0,cnt-1); return B; }