140、消除注释

题目描述:
给一个 C++ 程序,删除程序中的注释。这个程序source是一个数组,其中source[i]表示第i行源码。 这表示每行源码由\n分隔。

在 C++ 中有两种注释风格,行内注释和块注释。

字符串// 表示行注释,表示//和其右侧的其余字符应该被忽略。

字符串/* 表示一个块注释,它表示直到*/的下一个(非重叠)出现的所有字符都应该被忽略。(阅读顺序为从左到右)非重叠是指,字符串/*/并没有结束块注释,因为注释的结尾与开头相重叠。

第一个有效注释优先于其他注释:如果字符串//出现在块注释中会被忽略。 同样,如果字符串/*出现在行或块注释中也会被忽略。

如果一行在删除注释之后变为空字符串,那么不要输出该行。即,答案列表中的每个字符串都是非空的。

样例中没有控制字符,单引号或双引号字符。比如,source = “string s = “/* Not a comment. */”;” 不会出现在测试样例里。(此外,没有其他内容(如定义或宏)会干扰注释。)

我们保证每一个块注释最终都会被闭合, 所以在行或块注释之外的/*总是开始新的注释。

最后,隐式换行符可以通过块注释删除。 有关详细信息,请参阅下面的示例。

从源代码中删除注释后,需要以相同的格式返回源代码。

示例 1:

输入:
source = ["/*Test program /", “int main()”, "{ ", " // variable declaration ", “int a, b, c;”, "/ This is a test", " multiline ", " comment for “, " testing */”, “a = b + c;”, “}”]

示例代码可以编排成这样:
/*Test program /
int main()
{
// variable declaration
int a, b, c;
/
This is a test
multiline
comment for
testing */
a = b + c;
}

输出: [“int main()”,"{ “,” “,“int a, b, c;”,“a = b + c;”,”}"]

编排后:
int main()
{

int a, b, c;
a = b + c;
}

解释:
第 1 行和第 6-9 行的字符串 /* 表示块注释。第 4 行的字符串 // 表示行注释。
示例 2:

输入:
source = [“a/comment", “line”, "more_comment/b”]
输出: [“ab”]
解释: 原始的 source 字符串是 “a/comment\nline\nmore_comment/b”, 其中我们用粗体显示了换行符。删除注释后,隐含的换行符被删除,留下字符串 “ab” 用换行符分隔成数组时就是 [“ab”].
注意:

source的长度范围为[1, 100].
source[i]的长度范围为[0, 80].
每个块注释都会被闭合。
给定的源码中不会有单引号、双引号或其他控制字符。

思路:
参考人家的思路:

在这里插入图片描述
代码:

class Solution {
    public List<String> removeComments(String[] source) {
   StringBuilder total = new StringBuilder();
        List<String> res = new ArrayList<>();
        for (int i = 0; i < source.length; i++) {
            total.append(source[i]).append("\n");
        }
        int indexline = -1, 
        	indexbb = -1, 
        	i = 0, 
        	length = total.length();
        while (i < length - 1) {
            char fi = total.charAt(i);
            char se = total.charAt(i + 1);
            if (fi == '/' && se == '/') {
                indexline = i;
                //删除直到\n
                while (i < length && total.charAt(i) != '\n') i++;
                total.delete(indexline, i);
                length -= (i - indexline);
                i = indexline - 1;
            } else if (fi == '/' && se == '*') {
                //找到下一个*/
                indexbb = i;
                i += 2;
                while (i < length - 1 && !(total.charAt(i) == '*' && total.charAt(i + 1) == '/')) i++;
                total.delete(indexbb, i + 2);
                length -= (i + 2 - indexbb);
                i = indexbb - 1;
            }
            i++;
        }
        String[] resArray = total.toString().split("\n");
        for (String str : resArray) {
            if (!"".equals(str)) {
                res.add(str);
            }
        }
        return res;
        
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值