import java.util.Arrays;

/**
* Source : https://oj.leetcode.com/problems/scramble-string/
*
* 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":
*
* great
* / \
* gr eat
* / \ / \
* g r e at
* / \
* a t
*
* 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".
*
* rgeat
* / \
* rg eat
* / \ / \
* r g e at
* / \
* a t
*
* 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".
*
* rgtae
* / \
* rg tae
* / \ / \
* r g ta e
* / \
* t a
*
* 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.
*
*/
public class ScrambleString { /**
* s1是不是s2的一个scramblestring
* s1按照任意位置进行二分划分,一直递归下去,期间,可以交换非叶子节点的两个子节点左右顺序,一直到叶子节点
*
* 一开始想着是找到s1的所有scramblestring,然后判断s2是否在里面
* 但是其实在寻找s2的scramblestring的时候就可以和s2进行对比判断,而不需要存储所有的scramblestring
*
* 选择
* s1分割的位置,递归的进行如下判断
* s1在i左边的子串和s2在i左边的子串是scramble的,s1在i的右边的子串和s2在i右边的子串是scramble的,或者
* s1在i左边的子串和s2在i右边的子串是scramble的,s1在i的右边的子串和s2在i左边的子串是scramble的
*
* @param s1
* @param s2
*/
public boolean scramble (String s1, String s2) {
if (s1.length() != s2.length()) {
return false;
}
if (s1.length() <= 1) {
return s1.equals(s2);
}
// return recursion(s1, s2);
return recursion1(s1, s2);
} public boolean recursion (String s1, String s2) {
int len = s1.length();
if (len == 1) {
return s1.equals(s2);
}
for (int i = 1; i < len; i++) {
if ((recursion(s1.substring(0, i), s2.substring(0, i)) && recursion(s1.substring(i), s2.substring(i)))
|| (recursion(s1.substring(0,i), s2.substring(len-i)) && recursion(s1.substring(i), s2.substring(0,len-i)))) {
return true;
}
}
return false;
} /**
* 递归的时候有些分支是不必要的,可以剪裁分支
* 在递归的时候,对s1和s2进行排序,如果排序之后两个字符串不相等则不必要继续递归
*
* @param s1
* @param s2
* @return
*/
public boolean recursion1 (String s1, String s2) {
int len = s1.length();
if (len == 1) {
return s1.equals(s2);
}
char[] s1CharArr = s1.toCharArray();
Arrays.sort(s1CharArr);
String sortedS1 = new String(s1CharArr);
char[] s2CharArr = s2.toCharArray();
Arrays.sort(s2CharArr);
String sortedS2 = new String(s1CharArr);
if (!sortedS1.equals(sortedS2)) {
return false;
} for (int i = 1; i < len; i++) {
if ((recursion(s1.substring(0, i), s2.substring(0, i)) && recursion(s1.substring(i), s2.substring(i)))
|| (recursion(s1.substring(0,i), s2.substring(len-i)) && recursion(s1.substring(i), s2.substring(0,len-i)))) {
return true;
}
}
return false;
} /**
* 递归的时候会有一些重复计算,使用数组记录计算过的结果,每次递归的时候判断,如果已经计算过则直接使用计算过的结果
* 中间结果需要一个三维的boolean数组,因为,每次计算结果的变量是s1.index1,s2.index2,还有当前字符串的长度len
*
* @param s1
* @param s2
* @return
*/
public boolean scramble2 (String s1, String s2) {
if (s1.length() != s2.length()) {
return false;
}
if (s1.length() <= 1) {
return s1.equals(s2);
}
int[][][] calculated = new int[s1.length()][s2.length()][s1.length()];
for (int i = 0; i < s1.length(); i++) {
for (int j = 0; j < s2.length(); j++) {
Arrays.fill(calculated[i][j], -1);
}
}
return recursion(s1, s2);
} public boolean recursion2 (String s1, int index1, String s2, int index2, int len, int[][][] calculated) {
if (len == 1) {
return s1.charAt(index1) == s2.charAt(index2);
}
int preresult = calculated[index1][index1][len-1];
if (preresult != -1) {
return preresult == 1;
}
preresult = 0;
for (int i = 1; i < len; i++) {
if (recursion2(s1, index1, s2, index2, i, calculated)
&& recursion2(s1, index1 + 1, s2, index2 + 1, len - i, calculated)) {
preresult = 1;
break;
}
if (recursion2(s1, index1, s2, index2 + len - i, i, calculated)
&& recursion2(s1, index1 + 1, s2, index2, len - i, calculated)) {
preresult = 1;
break;
}
}
calculated[index1][index2][len-1] = preresult;
return preresult == 1;
} public static void main(String[] args) {
ScrambleString scrambleString = new ScrambleString();
System.out.println(scrambleString.scramble("great", "rgtae"));
System.out.println(scrambleString.scramble2("great", "rgtae"));
}
}

leetcode — scramble-string的更多相关文章

  1. Leetcode:Scramble String 解题报告

    Scramble String Given a string s1, we may represent it as a binary tree by partitioning it to two no ...

  2. [LeetCode] Scramble String -- 三维动态规划的范例

    (Version 0.0) 作为一个小弱,这个题目是我第一次碰到三维的动态规划.在自己做的时候意识到了所谓的scramble实际上有两种可能的类型,一类是在较低层的节点进行的两个子节点的对调,这样的情 ...

  3. [LeetCode] Scramble String 爬行字符串

    Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrin ...

  4. [leetcode]Scramble String @ Python

    原题地址:https://oj.leetcode.com/problems/scramble-string/ 题意: Given a string s1, we may represent it as ...

  5. [Leetcode] Scramble String

    Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrin ...

  6. [LeetCode] Scramble String(树的问题最易用递归)

    Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrin ...

  7. [Leetcode] scramble string 乱串

    Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrin ...

  8. [LeetCode] Scramble String 字符串 dp

    Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrin ...

  9. 【一天一道LeetCode】#87. Scramble String

    一天一道LeetCode 本系列文章已全部上传至我的github,地址:ZeeCoder's Github 欢迎大家关注我的新浪微博,我的新浪微博 欢迎转载,转载请注明出处 (一)题目 Given a ...

  10. 【leetcode】Scramble String

    Scramble String Given a string s1, we may represent it as a binary tree by partitioning it to two no ...

随机推荐

  1. sqlzoo:3

    顯示1980年物理學(physics)獲獎者,及1984年化學獎(chemistry)獲得者. select yr,subject,winner from nobel ) ) 查看1980年獲獎者,但 ...

  2. linux磁盘满了的处理

    1.查看磁盘使用情况 cd  / df -h 如果 总量Size和Used一样,按就证明磁盘满了 2.查看当前文件下每个文件大小 du -sh * 一层一层去查,就可以查到占用空间最大的那个文件及产生 ...

  3. BZOJ 4804

    辣鸡题目毁我青春 易推 \[\sum_{i=1}^n\sum_{i=1}^m \varphi(gcd(i,j))=\sum_{T}\frac{n}{T}\dfrac{m}{T}\sum_{d|T} \ ...

  4. gridlayout代码注释

    <div class="wrapper"> //定义一节或者一部分区域,它的css样式对应的css中class选择器的wrapper <div class=&qu ...

  5. go语言指针理解

  6. cadence焊盘及元件封装制作

    前面学习了元件封装的制作,由于琐碎事情的耽误,加上学习python,没有及时的总结这部分内容,现在做一个补充!

  7. selenium webdriver定位不到元素的五种原因及解决办法

    1.动态id定位不到元素 for example:        //WebElement xiexin_element = driver.findElement(By.id("_mail_ ...

  8. 【react】---手动封装一个简易版的redux

    export let createStore = (reducer)=>{ //定义默认的state let state; //定义默认的action let actionTypes = &qu ...

  9. Nuget私有服务搭建实战

    最近更新了Nuget私有服务器的版本,之前是2.8.5,现在是2.11.3. Nuget服务器的搭建,这里有篇很详细的文章,跟着弄就好了: https://docs.microsoft.com/en- ...

  10. 脚本语言丨Batch入门教程第三章:逻辑判断

    通过学习Batch入门教程的前两章内容,我们已经大致掌握了基本概念和认识变量的相关内容,今天我们要跟大家继续分享第三章内容:Batch入门教程之逻辑判断.  前期回顾  ◀Batch入门教程丨部署与H ...