1999 递归判断首尾相等,诗体文言带你解读。 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;long long N;char s[100];bool HW(int L,int R){ if(L>=R) re…… 题解列表 2022年07月25日 0 点赞 0 评论 230 浏览 评分:9.9
元始真解!编写题解 1999: 回文判断 摘要:#####解题思路:设反向扫描双指针为i和j,如果s[i]和s[j]相同,则执行i++和j—;如果s[i]和s[j]不同,那么或者删除s[i],或者删除s[j],看剩下的字符串是否是回文串。 ```…… 题解列表 2022年12月22日 0 点赞 0 评论 421 浏览 评分:9.9
回文数判断C++ 摘要:解题思路:定义函数 判断是否是回文数 再从主函数调用注意事项:赋值与等于的区别!本文赋值为加粗字体,等于为红色字体参考代码:#include <bits/stdc++.h>using namespac…… 题解列表 2024年07月17日 0 点赞 0 评论 235 浏览 评分:9.9
回文判断-题解(C++代码)满分AC ! 最简洁 !! reverse ! 摘要: ------------ 题目描述: 若一个正整数从左向右读与从右向左读都一样,我们就将其称之为回文数(例如12321、44、3都是回文数)。输入一个正整数,判断它是否是回文数,是…… 题解列表 2020年06月18日 0 点赞 0 评论 506 浏览 评分:7.3
回文判断-题解(C++代码)运用反向迭代器 摘要:解题思路: 运用反向迭代器注意事项: 运用重载了的string的'=='运算符参考代码:#include<iostream> #include<string> using name…… 题解列表 2021年01月24日 0 点赞 0 评论 451 浏览 评分:6.0
判断回文数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s,t=""; cin>>s; …… 题解列表 2023年05月11日 0 点赞 0 评论 74 浏览 评分:0.0
回文判断-题解(C++代码) 摘要:水题呀 ```cpp #include #include using namespace std; int main() { long long n; …… 题解列表 2019年06月11日 0 点赞 0 评论 408 浏览 评分:0.0
旧物有情 # 回文判断 两种方法 摘要:[TOC] # 方法一:reverse翻转 ``` #include #include #include #include #include using namespace s…… 题解列表 2024年10月17日 0 点赞 0 评论 67 浏览 评分:0.0
1999: 回文判断 摘要:equal 无脑往上拍。#include <bits/stdc++.h> using namespace std; int main(){ string s; getlin…… 题解列表 2022年01月01日 0 点赞 0 评论 170 浏览 评分:0.0
1999-回文判断(简洁) 摘要:```cpp #include #include using namespace std; int main() { long long n; //long long数据最大值占19…… 题解列表 2022年10月15日 0 点赞 0 评论 105 浏览 评分:0.0