[Swift]LeetCode1096. 花括号展开 II | Brace Expansion II
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/)
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:https://www.cnblogs.com/strengthen/p/11032169.html
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
Under a grammar given below, strings can represent a set of lowercase words. Let's use R(expr)
to denote the set of words the expression represents.
Grammar can best be understood through simple examples:
- Single letters represent a singleton set containing that word.
R("a") = {"a"}
R("w") = {"w"}
- When we take a comma delimited list of 2 or more expressions, we take the union of possibilities.
R("{a,b,c}") = {"a","b","c"}
R("{{a,b},{b,c}}") = {"a","b","c"}
(notice the final set only contains each word at most once)
- When we concatenate two expressions, we take the set of possible concatenations between two words where the first word comes from the first expression and the second word comes from the second expression.
R("{a,b}{c,d}") = {"ac","ad","bc","bd"}
R("{a{b,c}}{{d,e},f{g,h}}") = R("{ab,ac}{dfg,dfh,efg,efh}") = {"abdfg", "abdfh", "abefg", "abefh", "acdfg", "acdfh", "acefg", "acefh"}
Formally, the 3 rules for our grammar:
- For every lowercase letter
x
, we haveR(x) = {x}
- For expressions
e_1, e_2, ... , e_k
withk >= 2
, we haveR({e_1,e_2,...}) = R(e_1) ∪ R(e_2) ∪ ...
- For expressions
e_1
ande_2
, we haveR(e_1 + e_2) = {a + b for (a, b) in R(e_1) × R(e_2)}
, where + denotes concatenation, and × denotes the cartesian product.
Given an expression
representing a set of words under the given grammar, return the sorted list of words that the expression represents.
Example 1:
Input: "{a,b}{c{d,e}}"
Output: ["acd","ace","bcd","bce"]
Example 2:
Input: "{{a,z},a{b,c},{ab,z}}" Output: ["a","ab","ac","z"] Explanation: Each distinct word is written only once in the final answer.
Constraints:
1 <= expression.length <= 50
expression[i]
consists of'{'
,'}'
,','
or lowercase English letters.- The given
expression
represents a set of words based on the grammar given in the description.
如果你熟悉 Shell 编程,那么一定了解过花括号展开,它可以用来生成任意字符串。
花括号展开的表达式可以看作一个由 花括号、逗号 和 小写英文字母 组成的字符串,定义下面几条语法规则:
- 如果只给出单一的元素
x
,那么表达式表示的字符串就只有"x"
。- 例如,表达式
{a}
表示字符串"a"
。 - 而表达式
{ab}
就表示字符串"ab"
。
- 例如,表达式
- 当两个或多个表达式并列,以逗号分隔时,我们取这些表达式中元素的并集。
- 例如,表达式
{a,b,c}
表示字符串"a","b","c"
。 - 而表达式
{a,b},{b,c}
也可以表示字符串"a","b","c"
。
- 例如,表达式
- 要是两个或多个表达式相接,中间没有隔开时,我们从这些表达式中各取一个元素依次连接形成字符串。
- 例如,表达式
{a,b}{c,d}
表示字符串"ac","ad","bc","bd"
。
- 例如,表达式
- 表达式之间允许嵌套,单一元素与表达式的连接也是允许的。
- 例如,表达式
a{b,c,d}
表示字符串"ab","ac","ad"
。 - 例如,表达式
{a{b,c}}{{d,e}f{g,h}}
可以代换为{ab,ac}{dfg,dfh,efg,efh}
,表示字符串"abdfg", "abdfh", "abefg", "abefh", "acdfg", "acdfh", "acefg", "acefh
"。
- 例如,表达式
给出表示基于给定语法规则的表达式 expression
,返回它所表示的所有字符串组成的有序列表。
假如你希望以「集合」的概念了解此题,也可以通过点击 “显示英文描述” 获取详情。
示例 1:
输入:"{a,b}{c{d,e}}" 输出:["acd","ace","bcd","bce"]
示例 2:
输入:"{{a,z}, a{b,c}, {ab,z}}" 输出:["a","ab","ac","z"] 解释:输出中 不应 出现重复的组合结果。
提示:
1 <= expression.length <= 50
expression[i]
由'{'
,'}'
,','
或小写英文字母组成- 给出的表达式
expression
用以表示一组基于题目描述中语法构造的字符串
1 class Solution { 2 func braceExpansionII(_ expression: String) -> [String] { 3 var str:String = expression 4 var pos:Int = 0 5 return Array(parseRule2(&str, &pos).sorted()) 6 } 7 8 func merge(_ a:Set<String>,_ b:Set<String>) -> Set<String> 9 { 10 if a.isEmpty {return b} 11 if b.isEmpty {return a} 12 var ans:Set<String> = Set<String>() 13 for v1 in a 14 { 15 for v2 in b 16 { 17 ans.insert(v1 + v2) 18 } 19 } 20 return ans 21 } 22 23 //{a,b,c} 24 func parseRule1(_ str:inout String,_ i:inout Int) -> Set<String> 25 { 26 var ans:Set<String> = Set<String>() 27 i += 1 28 ans = parseRule2(&str, &i) 29 i += 1 30 return ans 31 } 32 33 //{a,b},{c,d} 34 func parseRule2(_ str:inout String,_ i:inout Int) -> Set<String> 35 { 36 var ans:Set<String> = Set<String>() 37 ans = parseRule3(&str, &i) 38 let arrStr:[Character] = Array(str) 39 while(i < str.count) 40 { 41 if arrStr[i] != "," {break} 42 i += 1 43 let temp:Set<String> = parseRule3(&str, &i) 44 ans = ans.union(temp) 45 } 46 return ans 47 } 48 49 //a{c,d}b{e,f} 50 func parseRule3(_ str:inout String,_ i:inout Int) -> Set<String> 51 { 52 var ans:Set<String> = Set<String>() 53 let arrStr:[Character] = Array(str) 54 while(i < str.count) 55 { 56 if arrStr[i] == "}" || arrStr[i] == "," {break} 57 if arrStr[i] == "{" 58 { 59 let temp:Set<String> = parseRule1(&str, &i) 60 ans = merge(ans, temp) 61 } 62 else 63 { 64 var temp:Set<String> = Set<String>() 65 var tmpStr:String = String() 66 while(i < str.count && arrStr[i] <= "z" && arrStr[i] >= "a") 67 { 68 tmpStr.append(arrStr[i]) 69 i += 1 70 } 71 temp.insert(tmpStr) 72 ans = merge(ans,temp) 73 } 74 } 75 return ans 76 } 77 }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了