• L1-023 输出GPLT C++解法【全网最细讲解】


    一、题目再现

    给定一个长度不超过10000的、仅由英文字母构成的字符串。请将字符重新调整顺序,按GPLTGPLT....这样的顺序输出,并忽略其它字符。当然,四种字符(不区分大小写)的个数不一定是一样多的,若某种字符已经输出完,则余下的字符仍按GPLT的顺序打印,直到所有字符都被输出。

    输入格式:

    输入在一行中给出一个长度不超过10000的、仅由英文字母构成的非空字符串

    输出格式:

    在一行中按题目要求输出排序后的字符串。题目保证输出非空。

    输入样例:

    pcTclnGloRgLrtLhgljkLhGFauPewSKgt
    

    输出样例:

    GPLTGPLTGLTGLGLL

    二、思路 

    • 从题中可以看出,我们应该用string容器,解题更方便一点,因为他里面内置了查找和删除(擦除)函数。
    • 我自己写了一个函数,用来查找指定字符并输出。
      • 因为它是不区分大小写的,所以我给func()指定了两个参数,用来接收大、小写字母。
      • 我发现find()函数不能这样用int pos = str.find('d' || 'x');  哈哈哈  ||是逻辑运算符,它的两边只能是bool类型的式子。  而且find也没有这种用法,只能接收一个字符或者字符串,然后进行比较  查找,并返回位置。 
      • 所以我就分开写的。int pos1 = str.find(d);   int pos2 = str.find(x);
      • 后来我想的是查找两个字符中的任意一个字符是否在输入的字符串中,并且返回查找到第一个元素的的位置。其实题中并没有要求这样。
      • 题中的意思应该是只要你查到了,比如有G或者g(无论大小写),都输出一个大写,然后随意抹去一个字母即可(比如G或者g即可)
    • 最后在main函数中调用该函数,用的是for循环
      • 其实这里的循环还能优化一下,用str.length()的话,相当于字符串多少个字母就循环了多少次。但是下面写了4个func(),相当于删除了四个字符。这里可以优化一下,我有时间再看看。
          

    三、代码

     下面这个是只要你查到了,比如有G或者g(无论大小写),都输出一个大写,然后随意抹去一个字母即可(比如G或者g即可)

    1. #include
    2. #include
    3. #include
    4. using namespace std;
    5. string str;
    6. void func(char &d, char &x);
    7. int main() {
    8. cin >> str;
    9. char G = 'G';
    10. char g = 'g';
    11. char P = 'P';
    12. char p = 'p';
    13. char L = 'L';
    14. char l = 'l';
    15. char T = 'T';
    16. char t = 't';
    17. int maxlength = str.length();
    18. for (int i = 0; i < maxlength; i++)
    19. {
    20. func(G, g);
    21. func(P, p);
    22. func(L, l);
    23. func(T, t);
    24. }
    25. return 0;
    26. }
    27. //查找指定字符并输出
    28. void func(char &d,char &x) { //d 为大写字母,x 为小写字母
    29. /*int pos = str.find('d' || 'x');*/
    30. int pos1 = str.find(d);
    31. int pos2 = str.find(x);
    32. int firstpos = -1;
    33. //if (pos1 >= 0 && pos2 >= 0)
    34. //{
    35. // firstpos = std::min(pos1, pos2);//查找两个字符中的任意一个字符是否在输入的字符串中,并且返回查找到第一个元素的的位置
    36. //}
    37. //else if( (pos1 >= 0 && pos2 < 0) || (pos1 < 0 && pos2 >= 0) )//只要有一个字母,无论大小写,就返回那个位置
    38. //{
    39. // firstpos = std::max(pos1, pos2);
    40. //}
    41. if (pos1 != -1 || pos2 != -1)
    42. {
    43. firstpos = max(pos1, pos2);
    44. }
    45. if (firstpos >= 0)
    46. {
    47. cout << d;//题目要求输出的都大写
    48. str.erase(firstpos, 1);
    49. }
    50. }

    查找两个字符中的任意一个字符是否在输入的字符串中,并且返回查找到第一个元素的的位置。其实题中并没有要求这样。但是这样更符合常理更高级哈哈哈

    1. #include
    2. #include
    3. #include
    4. using namespace std;
    5. string str;
    6. void func(char &d, char &x);
    7. int main() {
    8. cin >> str;
    9. char G = 'G';
    10. char g = 'g';
    11. char P = 'P';
    12. char p = 'p';
    13. char L = 'L';
    14. char l = 'l';
    15. char T = 'T';
    16. char t = 't';
    17. int maxlength = str.length();
    18. for (int i = 0; i < maxlength; i++)
    19. {
    20. func(G, g);
    21. func(P, p);
    22. func(L, l);
    23. func(T, t);
    24. }
    25. return 0;
    26. }
    27. //查找指定字符并输出
    28. void func(char &d,char &x) { //d 为大写字母,x 为小写字母
    29. /*int pos = str.find('d' || 'x');*/
    30. int pos1 = str.find(d);
    31. int pos2 = str.find(x);
    32. int firstpos = -1;
    33. if (pos1 >= 0 && pos2 >= 0)
    34. {
    35. firstpos = std::min(pos1, pos2);//查找两个字符中的任意一个字符是否在输入的字符串中,并且返回查找到第一个元素的的位置
    36. }
    37. else if( (pos1 >= 0 && pos2 < 0) || (pos1 < 0 && pos2 >= 0) )//只要有一个字母,无论大小写,就返回那个位置
    38. {
    39. firstpos = std::max(pos1, pos2);
    40. }
    41. //if (pos1 != -1 || pos2 != -1)
    42. //{
    43. // firstpos = max(pos1, pos2);
    44. //}
    45. if (firstpos >= 0)
    46. {
    47. cout << d;//题目要求输出的都大写
    48. str.erase(firstpos, 1);
    49. }
    50. }

    上述两份代码都可以正确提交并运行!

    欢迎大家在评论区交流碰撞!

  • 相关阅读:
    解析Spring中的循环依赖问题:再探三级缓存(AOP)
    【uniapp uview】u--textarea组件custom validator check failed for prop “confirmType“
    SpringCloudAlibaba组件 — — OpenFeign的其他作用【超时时间、日志打印】
    行变列,查找某一时刻附近记录
    Vue中使用andt组件a-table列表数据根据点击的表头进行升/降排序-案例
    【C++】(5)类和对象练习,日期类的实现,运算符重载
    Linux宝塔面板高并发优化方案
    【速度收藏】17条好用的Python技巧分享(含源代码)
    【Filament】立方体贴图(6张图)
    上网行为审计软件能审计到什么
  • 原文地址:https://blog.csdn.net/zss6666yi/article/details/132864806