西安交通大学915-2019-编程2

题目描述:

在这里插入图片描述

解题思路:

  • 包含空格,首先去除空格
  • 利用回文的定义,遍历一次

代码实现:

#include <iostream>
#include <stack>
#include <vector>
#include <string>
#include <map>
#include <unordered_map>
using namespace std;


bool RecursionSolution(const string &s, int i, int j) {
    if (i >= j) {
        return true;
    }
    if (s[i] != s[j]) {
        return false;
    }
    return s[i] == s[j] && RecursionSolution(s, i + 1, j - 1);
}

bool NoRecursionSolution(const string s) {
    int n = s.length();
    for (int i = 0; i < n / 2; i++) {
        if (s[i] != s[n - 1 - i]) {
            return false;
        }
    }
    return true;
}

void RemoveSpace(string &s) {
    string res = "";
    for (auto c: s) {
        if (c != ' ') {
            res += c;
        }
    }
    s = res;
    return;
}


void ToUpper(string &s) {
    // 统一转换为大写
    for (auto & c: s) {
        if (islower(c)) {
            c ^= 32;
        }
    }
}

void TestCase() {
    using psb = pair<string, bool>;
    vector<psb> t = {
        {"123321", true},
        {" 12 3 4 3 21", true},
        {"abcAbc", true},
        {"abcCbA", true},
        {"aaccbbdd", false}
    };

    bool flag = false;
    for (auto& x : t) {
        RemoveSpace(x.first);
        ToUpper(x.first);
        if (RecursionSolution(x.first, 0, x.first.length() - 1) != x.second || NoRecursionSolution(x.first) != x.second) {
            flag = true;
        }
    }
    if (flag) {
        cout << "error" << endl;
    } else {
        cout << "all accept" << endl;
    }
}



int main() {
    cout << "please input str:" << endl;
    string s;
    getline(cin, s);
    RemoveSpace(s);
    

    cout << s << endl;
    cout << "case 1 recursion solution" << endl;
    if (RecursionSolution(s, 0, s.length() - 1)) {
        cout << "yes" << endl;
    } else {
        cout << "no" << endl;
    }

    cout << "case 2 no recursion solution" << endl;
    if (NoRecursionSolution(s)) {
        cout << "yes" << endl;
    } else {
        cout << "no" << endl;
    }

    TestCase();
    return 0; 
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值