leetcode — scramble-string
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的更多相关文章
- Leetcode:Scramble String 解题报告
Scramble String Given a string s1, we may represent it as a binary tree by partitioning it to two no ...
- [LeetCode] Scramble String -- 三维动态规划的范例
(Version 0.0) 作为一个小弱,这个题目是我第一次碰到三维的动态规划.在自己做的时候意识到了所谓的scramble实际上有两种可能的类型,一类是在较低层的节点进行的两个子节点的对调,这样的情 ...
- [LeetCode] Scramble String 爬行字符串
Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrin ...
- [leetcode]Scramble String @ Python
原题地址:https://oj.leetcode.com/problems/scramble-string/ 题意: Given a string s1, we may represent it as ...
- [Leetcode] Scramble String
Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrin ...
- [LeetCode] Scramble String(树的问题最易用递归)
Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrin ...
- [Leetcode] scramble string 乱串
Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrin ...
- [LeetCode] Scramble String 字符串 dp
Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrin ...
- 【一天一道LeetCode】#87. Scramble String
一天一道LeetCode 本系列文章已全部上传至我的github,地址:ZeeCoder's Github 欢迎大家关注我的新浪微博,我的新浪微博 欢迎转载,转载请注明出处 (一)题目 Given a ...
- 【leetcode】Scramble String
Scramble String Given a string s1, we may represent it as a binary tree by partitioning it to two no ...
随机推荐
- matplotlia应用
一.简单使用 使用函数 plt.polt(x,y,label,color,width) 根据x,y 数组 绘制直,曲线 import numpy as np #引用numpy库,从新命名它为np(以后 ...
- socket error:10053
系统提示:10053,由于超时或其它失败,连接中止 服务端和客户端并没有出现连接错误或主动关闭连接 发生这个错误的原因往往是连接上了,但是长时间没有通信,所以连接被挂起了 防止的办法就是自己设计心跳包 ...
- matlab安装 macos
http://pan.baidu.com/s/1o6qKdxo内附安装说明Matlab R2014A Mac & Linux 破解版 readme文件有流程!可以安装
- 【原创】XAF CriteriaOperator 使用方式汇总
1.CriteriaPropertyEditor [EditorAlias(EditorAliases.CriteriaPropertyEditor)] [CriteriaOptions(" ...
- 解析jsonObject,赋给指定的对象
从JSONObject中解析数据,并赋给给定的对象 public static Object parseBean(JSONObject jsonObject, Object obj) { if ( ...
- Android图标
在线生成安卓App图标.IOS App图标 https://icon.wuruihong.com
- Bandwagon的配置记录(二) —— ftp文件传输
SSH登录服务器 登录的方法在Bandwagon的配置记录(一) —— kexue上网 配置前的准备 1.新建一个目录( /home/ftp ),以后可以把文件放在这里,这里相当于是个中转站 cd ...
- react-native-upgrade-android
React Native的版本升级插件(仅是android), react-native版本需要0.17.0及以上 如何安装 1.首先安装npm包 npm install react-native-u ...
- 通用类 对象Excel互转
public class ExcelHelper { public void Demo(string filePath) { if (File.Exists(filePath)) File.Delet ...
- c#—get,set访问器的作用
http://blog.sina.com.cn/s/blog_82526aa60100txtx.html 有字段为啥要有属性??? 属性作用: 1.控制读和写的权限 get:读出 set:写入 2.对 ...