摘要: https://pintia.cn/problem-sets/12/problems/342 1 bool palindrome(char *s) 2 { 3 int n, i, k; 4 bool ret; 5 6 n = strlen(s); 7 i = 0; 8 k = n - 1; 9 wh 阅读全文
posted @ 2020-01-14 19:41 jason2018 阅读(135) 评论(0) 推荐(0) 编辑