Scramble String
Given a strings1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.
Below is one possible representation of s1="great":
great
/ \
gr eat
/ \ / \
g r e at
/ \
a tTo scramble the string, we may choose any non-leaf node and swap its two children.
For example, if we choose the node"gr"and swap its two children, it produces a scrambled string"rgeat".
rgeat
/ \
rg eat
/ \ / \
r g e at
/ \
a tWe say that"rgeat"is a scrambled string of"great".
Similarly, if we continue to swap the children of nodes"eat"and"at", it produces a scrambled string"rgtae".
We say that"rgtae"is a scrambled string of"great".
Given two string s1 _and _s2 _of the same length, determine if _s2 _is a scrambled string of _s1.
Example
Example 1:
Example 2:
Note
DP的方法难
暴力做+Memo优化
Code
Last updated