• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
巅峰主公
博客园    首页    新随笔    联系   管理    订阅  订阅

栈

 1 #include <iostream>
 2 #include <cstring>
 3 
 4 using namespace std;
 5 
 6 int n, top, mid, next;
 7 char a[100010], s[100010];
 8 
 9 int main(){
10     cin >> a;
11     n = strlen(a);
12     mid = n / 2 - 1;
13     for(int i = 0; i <= mid; i ++) s[ ++ top] = a[i];
14     if(n % 2) next = mid + 2;
15     else next = mid + 1;
16     for(int i = next; i <= n - 1; i ++){
17         if(a[i] != s[top]) break;
18         top --;
19     } 
20     if(top == 0) cout << "yes";
21     else cout << "no";
22     return 0;
23 }

 

posted @ 2017-09-20 17:53  一个天才  阅读(84)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3