【LetMeFly】722.删除注释
力扣题目链接:https://leetcode.cn/problems/remove-comments/
给一个 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;", "}"] 输出: ["int main()","{ "," ","int a, b, c;","a = b + c;","}"] 解释: 示例代码可以编排成这样: /*Test program */ int main() { // variable declaration int a, b, c; /* This is a test multiline comment for testing */ a = b + c; } 第 1 行和第 6-9 行的字符串 /* 表示块注释。第 4 行的字符串 // 表示行注释。 编排后: int main() { int a, b, c; a = b + c; }
示例 2:
输入: source = ["a/*comment", "line", "more_comment*/b"] 输出: ["ab"] 解释: 原始的 source 字符串是 "a/*comment\nline\nmore_comment*/b", 其中我们用粗体显示了换行符。删除注释后,隐含的换行符被删除,留下字符串 "ab" 用换行符分隔成数组时就是 ["ab"].
提示:
1 <= source.length <= 100
0 <= source[i].length <= 80
-
source[i]
由可打印的 ASCII 字符组成。 - 每个块注释都会被闭合。
- 给定的源码中不会有单引号、双引号或其他控制字符。
方法一:状态记录
使用几个变量来记录当前状态:
-
findingEnd = false
,用来记录是否处于块注释中。 -
thisLine = ''
,用来记录这一行去掉注释后的结果。 -
ans = []
,用来存放答案。
遍历每一行:
- 遍历这一行的每个元素:
- 如果处于块注释中 且 遇到了
*/
:更新findingEnd = false - 否则:
- 如果遇到了
/*
:更新findingEnd = true - 如果遇到了
//
:跳过处理这一行 - 否则:当前元素添加到thisLine中
- 如果遇到了
- 如果处于块注释中 且 遇到了
- 这一行处理结束后,若不是处于块注释中,则:
ans.append(thisLine)
thisLine.clear()
最终返回ans即可
- 时间复杂度 O ( ∑ c ) O(\sum c) O(∑c),其中 ∑ c \sum c ∑c是代码中字符个数。
- 空间复杂度 O ( ∑ c ) O(\sum c) O(∑c),空间复杂度主要来自 t h i s L i n e thisLine thisLine,极端情况下每一行仅注释掉一个换行符,则thisLine的长度将达到代码长度的级别。
TODO: 本题的另外两种解法:文章来源:https://www.toymoban.com/news/detail-624976.html
- 状态机(类似LL1)
- 正则表达式:Python、C++
AC代码
C++
class Solution {
public:
vector<string> removeComments(vector<string>& source) {
vector<string> ans;
bool findingEnd = false;
string thisLine;
for (string& s : source) {
for (int i = 0; i < s.size(); i++) {
if (findingEnd) {
if (s[i] == '*' && i + 1 < s.size() && s[i + 1] == '/') {
findingEnd = false;
i++;
}
}
else {
if (s[i] == '/' && i + 1 < s.size() && s[i + 1] == '*') {
findingEnd = true;
i++;
}
else if (s[i] == '/' && i + 1 < s.size() && s[i + 1] == '/') {
break;
}
else {
thisLine += s[i];
}
}
}
if (!findingEnd) {
if (thisLine.size()) {
ans.push_back(thisLine);
thisLine.clear();
}
}
}
return ans;
}
};
Python
# from typing import List
class Solution:
def removeComments(self, source: List[str]) -> List[str]:
ans = []
findingEnd = False
thisLine = ''
for s in source:
i = 0
while i < len(s):
if findingEnd:
if s[i] == '*' and i + 1 < len(s) and s[i + 1] == '/':
findingEnd = False
i += 1
else:
if s[i] == '/' and i + 1 < len(s) and s[i + 1] == '*':
findingEnd = True
i += 1
elif s[i] == '/' and i + 1 < len(s) and s[i + 1] == '/':
break
else:
thisLine += s[i]
i += 1
if not findingEnd and len(thisLine):
ans.append(thisLine)
thisLine = ''
return ans
同步发文于CSDN,原创不易,转载请附上原文链接哦~
Tisfy:https://letmefly.blog.csdn.net/article/details/132075300文章来源地址https://www.toymoban.com/news/detail-624976.html
到了这里,关于LeetCode 0722. 删除注释的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!