-
Notifications
You must be signed in to change notification settings - Fork 0
/
1410.html-实体解析器.cpp
122 lines (118 loc) · 2.99 KB
/
1410.html-实体解析器.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
* @lc app=leetcode.cn id=1410 lang=cpp
*
* [1410] HTML 实体解析器
*
* https://leetcode.cn/problems/html-entity-parser/description/
*
* algorithms
* Medium (47.14%)
* Likes: 29
* Dislikes: 0
* Total Accepted: 11.2K
* Total Submissions: 23.2K
* Testcase Example: '"& is an HTML entity but &ambassador; is not."'
*
* 「HTML 实体解析器」 是一种特殊的解析器,它将 HTML 代码作为输入,并用字符本身替换掉所有这些特殊的字符实体。
*
* HTML 里这些特殊字符和它们对应的字符实体包括:
*
*
* 双引号:字符实体为 " ,对应的字符是 " 。
* 单引号:字符实体为 ' ,对应的字符是 ' 。
* 与符号:字符实体为 & ,对应对的字符是 & 。
* 大于号:字符实体为 > ,对应的字符是 > 。
* 小于号:字符实体为 < ,对应的字符是 < 。
* 斜线号:字符实体为 ⁄ ,对应的字符是 / 。
*
*
* 给你输入字符串 text ,请你实现一个 HTML 实体解析器,返回解析器解析后的结果。
*
*
*
* 示例 1:
*
*
* 输入:text = "& is an HTML entity but &ambassador; is not."
* 输出:"& is an HTML entity but &ambassador; is not."
* 解释:解析器把字符实体 & 用 & 替换
*
*
* 示例 2:
*
*
* 输入:text = "and I quote: "...""
* 输出:"and I quote: \"...\""
*
*
* 示例 3:
*
*
* 输入:text = "Stay home! Practice on Leetcode :)"
* 输出:"Stay home! Practice on Leetcode :)"
*
*
* 示例 4:
*
*
* 输入:text = "x > y && x < y is always false"
* 输出:"x > y && x < y is always false"
*
*
* 示例 5:
*
*
* 输入:text = "leetcode.com⁄problemset⁄all"
* 输出:"leetcode.com/problemset/all"
*
*
*
*
* 提示:
*
*
* 1 <= text.length <= 10^5
* 字符串可能包含 256 个ASCII 字符中的任意字符。
*
*
*/
#include <bits/stdc++.h>
using namespace std;
// @lc code=start
class Solution {
public:
using EntityChar = pair <string, char>;
vector <EntityChar> entityList;
string entityParser(string text) {
entityList = vector({
(EntityChar){""", '"'},
(EntityChar){"'", '\''},
(EntityChar){"&", '&'},
(EntityChar){">", '>'},
(EntityChar){"<", '<'},
(EntityChar){"⁄", '/'}
});
string r = "";
for (int pos = 0; pos < text.size(); ) {
bool isEntity = false;
if (text[pos] == '&') {
for (const auto &[e, c]: entityList) {
if (text.substr(pos, e.size()) == e) {
r.push_back(c);
pos += e.size();
isEntity = true;
break;
}
}
}
if (!isEntity) {
r.push_back(text[pos++]);
continue;
}
}
return r;
}
};
// @lc code=end
int main() {
}