[LeetCode] Remove Comments

722. Remove Comments

Given a C++ program, remove comments from it. The program source is an array where source[i] is the i-th line of the source code. This represents the result of splitting the original source code string by the newline character \n.

In C++, there are two types of comments, line comments, and block comments.

The string // denotes a line comment, which represents that it and rest of the characters to the right of it in the same line should be ignored.

The string / denotes a block comment, which represents that all characters until the next (non-overlapping) occurrence of / should be ignored. (Here, occurrences happen in reading order: line by line from left to right.) To be clear, the string /*/ does not yet end the block comment, as the ending would be overlapping the beginning.

The first effective comment takes precedence over others: if the string // occurs in a block comment, it is ignored. Similarly, if the string /* occurs in a line or block comment, it is also ignored.

If a certain line of code is empty after removing comments, you must not output that line: each string in the answer list will be non-empty.

There will be no control characters, single quote, or double quote characters. For example, source = “string s = “/ Not a comment. /“;” will not be a test case. (Also, nothing else such as defines or macros will interfere with the comments.)

It is guaranteed that every open block comment will eventually be closed, so /* outside of a line or block comment always starts a new comment.

Finally, implicit newline characters can be deleted by block comments. Please see the examples below for details.

After removing the comments from the source code, return the source code in the same format.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class Solution {
public:
vector<string> removeComments(vector<string>& s) {
vector<string> ans;
bool inBlock = false;
stringstream ss;
for (auto &t:s) {
for (int i = 0; i < t.size();) {
if (!inBlock) {
if (i + 1 == t.size()) ss << t[i++];
else {
string m = t.substr(i,2);
if (m == "/*") inBlock ^= true, i+=2;
else if (m == "//") break;
else ss << t[i++];
}
}
else {
if (i + 1 == t.size()) i++;
else {
string m = t.substr(i,2);
if (m == "*/") inBlock ^= true, i+=2;
else i++;
}
}
}
if (ss.str().length() && !inBlock) ans.push_back(ss.str()), ss.str("");
}
return ans;
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2021/04/23/PS/LeetCode/remove-comments/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.