Class Solution
-
- All Implemented Interfaces:
public final class Solution
1096 - Brace Expansion II\.
Hard
Under the grammar given below, strings can represent a set of lowercase words. Let
R(expr)
denote the set of words the expression represents.The grammar can best be understood through simple examples:
Single letters represent a singleton set containing that word.
When we take a comma-delimited list of two or more expressions, we take the union of possibilities.
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.
Formally, the three rules for our grammar:
For every lowercase letter
x
, we haveR(x) = {x}
.For expressions <code>e<sub>1</sub>, e<sub>2</sub>, ... , e<sub>k</sub></code> with
k >= 2
, we have <code>R({e<sub>1</sub>, e<sub>2</sub>, ...}) = R(e<sub>1</sub>) ∪ R(e<sub>2</sub>) ∪ ...</code>For expressions <code>e<sub>1</sub></code> and <code>e<sub>2</sub></code>, we have <code>R(e<sub>1</sub> + e<sub>2</sub>) = {a + b for (a, b) in R(e<sub>1</sub>) × R(e<sub>2</sub>)}</code>, 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: expression = "{a,b}{c,{d,e}}"
Output: "ac","ad","ae","bc","bd","be"
Example 2:
Input: expression = "{ {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 <= 60
expression[i]
consists of'{'
,'}'
,','
or lowercase English letters.The given
expression
represents a set of words based on the grammar given in the description.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final List<String>
braceExpansionII(String expression)
-
-
Method Detail
-
braceExpansionII
final List<String> braceExpansionII(String expression)
-
-
-
-