在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ Given a string representing a code snippet, you need to implement a tag validator to parse the code and return whether it is valid. A code snippet is valid if all the following rules hold:
Valid Code Examples: Input: "<DIV>This is the first line <![CDATA[<div>]]></DIV>" Invalid Code Examples: Input: "<A> <B> </A> </B>" Output: False Explanation: Unbalanced. If "<A>" is closed, then "<B>" must be unmatched, and vice versa. Input: "<DIV> div tag is not closed <DIV>" Output: False Input: "<DIV> unmatched < </DIV>" Output: False Input: "<DIV> closed tags with invalid tag name <b>123</b> </DIV>" Output: False Input: "<DIV> unmatched tags with invalid tag name </1234567890> and <CDATA[[]]> </DIV>" Output: False Input: "<DIV> unmatched start tag <B> and unmatched end tag </C> </DIV>" Output: False Note:
给定一个表示代码片段的字符串,你需要实现一个验证器来解析这段代码,并返回它是否合法。合法的代码片段需要遵守以下的所有规则:
合法代码的例子: 输入: "<DIV>This is the first line <![CDATA[<div>]]></DIV>" 输出: True 解释: 代码被包含在了闭合的标签内: <DIV> 和 </DIV> 。 TAG_NAME 是合法的,TAG_CONTENT 包含了一些字符和 cdata 。 即使 CDATA_CONTENT 含有不匹配的起始标签和不合法的 TAG_NAME,它应该被视为普通的文本,而不是标签。 所以 TAG_CONTENT 是合法的,因此代码是合法的。最终返回True。 输入: "<DIV>>> ![cdata[]] <![CDATA[<div>]>]]>]]>>]</DIV>" 输出: True 解释: 我们首先将代码分割为: start_tag|tag_content|end_tag 。 start_tag -> "<DIV>" end_tag -> "</DIV>" tag_content 也可被分割为: text1|cdata|text2 。 text1 -> ">> ![cdata[]] " cdata -> "<![CDATA[<div>]>]]>" ,其中 CDATA_CONTENT 为 "<div>]>" text2 -> "]]>>]" start_tag 不是 "<DIV>>>" 的原因参照规则 6 。 cdata 不是 "<![CDATA[<div>]>]]>]]>" 的原因参照规则 7 。 不合法代码的例子: 输入: "<A> <B> </A> </B>" 输出: False 解释: 不合法。如果 "<A>" 是闭合的,那么 "<B>" 一定是不匹配的,反之亦然。 输入: "<DIV> div tag is not closed <DIV>" 输出: False 输入: "<DIV> unmatched < </DIV>" 输出: False 输入: "<DIV> closed tags with invalid tag name <b>123</b> </DIV>" 输出: False 输入: "<DIV> unmatched tags with invalid tag name </1234567890> and <CDATA[[]]> </DIV>" 输出: False 输入: "<DIV> unmatched start tag <B> and unmatched end tag </C> </DIV>" 输出: False 注意:
Runtime: 20 ms
Memory Usage: 19.8 MB
1 class Solution { 2 func isValid(_ code: String) -> Bool { 3 var st:[String] = [String]() 4 var i:Int = 0 5 while(i < code.count) 6 { 7 if i > 0 && st.isEmpty 8 { 9 return false 10 } 11 if code.subString(i, 9) == "<![CDATA[" 12 { 13 var j:Int = i + 9 14 i = code.find("]]>",j) 15 if i < 0 {return false} 16 i += 2 17 } 18 else if code.subString(i, 2) == "</" 19 { 20 var j:Int = i + 2 21 i = code.find(">",j) 22 if i < 0 {return false} 23 var tag:String = code.subString(j, i - j) 24 if st.isEmpty || st.last! != tag 25 { 26 return false 27 } 28 st.popLast() 29 } 30 else if code.subString(i, 1) == "<" 31 { 32 var j:Int = i + 1 33 i = code.find(">",j) 34 if i < 0 || i == j || i - j > 9 35 { 36 return false 37 } 38 for k in j..<i 39 { 40 if code[k] < "A" || code[k] > "Z" 41 { 42 return false 43 } 44 } 45 var tag:String = code.subString(j, i - j) 46 st.append(tag) 47 } 48 i += 1 49 } 50 return st.isEmpty 51 } 52 } 53 54 //String扩展 55 extension String { 56 //subscript函数可以检索数组中的值 57 //直接按照索引方式截取指定索引的字符 58 subscript (_ i: Int) -> Character { 59 //读取字符 60 get {return self[index(startIndex, offsetBy: i)]} 61 } 62 63 // 截取字符串:指定索引和字符数 64 // - begin: 开始截取处索引 65 // - count: 截取的字符数量 66 func subString(_ begin:Int,_ count:Int) -> String { 67 let start = self.index(self.startIndex, offsetBy: max(0, begin)) 68 let end = self.index(self.startIndex, offsetBy: min(self.count, begin + count)) 69 return String(self[start..<end]) 70 } 71 72 // 截取字符串:从index到结束处 73 // - Parameter index: 开始索引 74 // - Returns: 子字符串 75 func subStringFrom(_ index: Int) -> String { 76 let theIndex = self.index(self.endIndex, offsetBy: index - self.count) 77 return String(self[theIndex..<endIndex]) 78 } 79 80 //从0索引处开始查找是否包含指定的字符串,返回Int类型的索引 81 //返回第一次出现的指定子字符串在此字符串中的索引 82 func find(_ sub:String)->Int { 83 var pos = -1 84 if let range = range(of:sub, options: .literal ) { 85 if !range.isEmpty { 86 pos = self.distance(from:startIndex, to:range.lowerBound) 87 } 88 } 89 return pos 90 } 91 92 //从指定索引处开始查找是否包含指定的字符串,返回Int类型的索引 93 //返回第一次出现的指定子字符串在此字符串中的索引 94 func find(_ sub:String,_ begin:Int)->Int { 95 var str:String = self.subStringFrom(begin) 96 var pos:Int = str.find(sub) 97 return pos == -1 ? -1 : (pos + begin) 98 } 99 }
|
请发表评论