Given a string s1, 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”:
To 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”.
We 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 strings s1 and s2 of the same length, determine if s2 is a scrambled string of s1.
解法1: 递归 O(2^n)
尝试每一个可能的split point,然后查看对于某一个切口i,可能可以分成的4个substring是否是scramble string.
时间复杂度是O(2^N)
|
|
解法2: DP
参考了[这篇][1]帖子的解法, 可以用dp的思想,dp是一个bottom up的想法。
用一个dp[i][j][k]表示两个string分别从i和j开始,长度为k + 1的两个子串是否为scramble string
|
|