• 6161. 从字符串中移除星号 Java解决


    题目描述:

    给你一个包含若干星号 * 的字符串 s 。

    在一步操作中,你可以:

            选中 s 中的一个星号。
            移除星号 左侧 最近的那个 非星号 字符,并移除该星号自身。
            返回移除 所有 星号之后的字符串。

    注意:

            生成的输入保证总是可以执行题面中描述的操作。
            可以证明结果字符串是唯一的。

    示例 1:

            输入:s = "leet**cod*e"
            输出:"lecoe"
            解释:从左到右执行移除操作:
                    - 距离第 1 个星号最近的字符是 "leet**cod*e" 中的 't' ,s 变为 "lee*cod*e" 。
                    - 距离第 2 个星号最近的字符是 "lee*cod*e" 中的 'e' ,s 变为 "lecod*e" 。
                    - 距离第 3 个星号最近的字符是 "lecod*e" 中的 'd' ,s 变为 "lecoe" 。
                    不存在其他星号,返回 "lecoe" 。
    示例 2:

            输入:s = "erase*****"
            输出:""
            解释:整个字符串都会被移除,所以返回空字符串。

    提示:

            1 <= s.length <= 105
            s 由小写英文字母和星号 * 组成
            s 可以执行上述操作

    来源:力扣(LeetCode)
    链接:https://leetcode.cn/problems/removing-stars-from-a-string
    著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

    解题:

    1.正解(利用栈)

    1. class Solution {
    2. /**
    3. 运用栈的原理
    4. 遇到非* --> 入栈
    5. 遇到* --> 出栈
    6. 最后将栈里的按顺序拼接成字符串就是答案了
    7. */
    8. public String removeStars(String s) {
    9. String out = "";
    10. Character[] c = new Character[ s.length() ];
    11. int n = 0;
    12. for( int i = 0; i < s.length(); i++ ) {
    13. if( s.charAt( i ) != '*' )
    14. c[ n++ ] = s.charAt( i )
    15. if( s.charAt( i ) == '*' )
    16. c[ --n ] = null;
    17. }
    18. for( int i = 0; i < n; i++ ) {
    19. out += c[ i ];
    20. }
    21. return out;
    22. }
    23. }

    2.暴力超时例子

    1. class Solution {
    2. int[] start = new int[ s.length() ];
    3. int n = 0;
    4. for( int i = 0; i < s.length(); i++ ) {
    5. if( s.charAt( i ) == '*' ) {
    6. System.out.println( " ---> " + i );
    7. start[ i ] = 1; //1: *
    8. }
    9. }
    10. for( int i = 0; i < start.length; i++ ) {
    11. if( start[ i ] == 1 ) {
    12. for( int j = i - 1; j >= 0; j-- ) {
    13. if( start[ j ] != 1 && start[ j ] != -1 ) {
    14. System.out.println( "去掉--------------> " + s.charAt( j ) );
    15. start[ j ] = -1; //表示去掉该非*号元素
    16. break;
    17. }
    18. }
    19. }
    20. }
    21. String out = "";
    22. for( int i = 0; i < start.length; i++ ) {
    23. if( start[ i ] == 0 ) {
    24. out += s.charAt( i );
    25. }
    26. }
    27. return out;
    28. }
    29. }

     

            

  • 相关阅读:
    经验分享,两个在线图片处理网站在线抠图和删除不需要的元素
    华为机试 - 字符串子序列II
    ora-39083 ora-01861
    python中的GUI自动化工具介绍
    MYSQL分区
    【Python 实战】---- 批量将图片转base64导出到excel中
    RK3568驱动指南|第五期-中断-
    国家网络安全周 | 金融日,一起 get金融行业数据安全
    Github每日精选(第42期):web前端自定义Alert窗口sweetalert
    SpringCloud学习笔记-Nacos服务分级存储模型
  • 原文地址:https://blog.csdn.net/QRLYLETITBE/article/details/126569605