题目:

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.

代码:

class Solution {
public:
bool isScramble(string s1, string s2) {
const int n1 = s1.size();
const int n2 = s2.size();
if (n1!=n2) { return false; }
const int n = n1;
int alpha[] = {};
for ( int i=; i<n; ++i ){ alpha[s1[i]-'a']++; alpha[s2[i]-'a']--; }
for ( int i=; i<; ++i ){ if ( alpha[i]!= ) return false; }
// terminal condition
if ( n== ) return s1[]==s2[];
// recursive process
for ( int i=; i<n; ++i ){
//cout << s1 << "," << s2 << ":" << i << endl;
if (
(
Solution::isScramble(s1.substr(,i), s2.substr(,i)) &&
Solution::isScramble(s1.substr(i,n-i), s2.substr(i,n-i))
)
||
(
Solution::isScramble(s1.substr(,i), s2.substr(n-i,i)) &&
Solution::isScramble(s1.substr(i,n-i), s2.substr(,n-i))
)
)
{ return true; }
}
return false;
}
};

tips:

这道题的题意自己并没有理解好,引用一个网上其他人的理解如下:

http://www.blogjava.net/sandy/archive/2013/05/22/399605.html

由于一个字符串有很多种二叉表示法,貌似很难判断两个字符串是否可以做这样的变换。
“对付复杂问题的方法是从简单的特例来思考,从而找出规律。
先考察简单情况:
字符串长度为1:很明显,两个字符串必须完全相同才可以。
字符串长度为2:当s1="ab", s2只有"ab"或者"ba"才可以。
对于任意长度的字符串,我们可以把字符串s1分为a1,b1两个部分,s2分为a2,b2两个部分,满足((a1~a2) && (b1~b2))或者 ((a1~b2) && (a1~b2))”

理解了题意,代码也就写出来了。

具体还有几个细节需要注意:

1. 为了剪枝并加快速度,做了如下几件事情:

  a) 判断s1与s2的长度是否相等

  b) 判断s1与s2的每个字符数量是否相等(这里由于是字母所以用一个定长数组alpha[26]表示:某个字母在s1中出现一次+1,在s2中出现一次-1;最终alpha的每个元素都是0则证明s1与s2的每个字符数量相等。扩展一下,如果字符不止26个字母,包含其他字符呢?可以用hashmap表示)

2. 设定终止条件:

  如果s1和s2长度已经为1,无法再分割了,就直接比较即可。

3. 在递归传入参数的时候,用到了substr(begin, num):

  a) begin代表切取的第一个字符下标,num代表截取几个字符

  b) 注意每次传入isScramble的字符长度相等

===========================================

上述的做法类似记忆化搜索,网上还有一种动态规划的解法,也学习了吧。

http://blog.csdn.net/linhuanmars/article/details/24506703

class Solution {
public:
bool isScramble(string s1, string s2) {
const int n1 = s1.size();
const int n2 = s2.size();
if ( n1 != n2 ) return false;
const int n = n1;
vector<vector<vector<bool> > > dp(n,vector<vector<bool> >(n,vector<bool>(n+,false)));
for ( int k=; k<=n; ++k )
{
for ( int i=; i<=n-k; ++i )
{
for ( int j=; j<=n-k; ++j )
{
if ( k== )
{
dp[i][j][k] = s1[i]==s2[j];
continue;
}
for ( int l=; l<k; ++l )
{
dp[i][j][k] =
(dp[i][j][l] && dp[i+l][j+l][k-l])
||
(dp[i][j+k-l][l] && dp[i+l][j][k-l]);
if ( dp[i][j][k] ) break;
}
}
}
}
/*
for ( int k=0; k<=n; ++k )
{
cout << k << endl;
for ( int i=0; i<n; ++i)
{
for (int j=0; j<n; ++j )
{
cout << dp[i][j][k] << " ";
}
cout << endl;
}
}
*/
return dp[][][n];
}
};

tips:

AC之后发现这道题的dp思路其实可以由递归思路得来。

递归算法在不断的递归过程中,其实是一直再算s1的某一段与s2等长的某一段是否符合scramble的特点;注意,这里的某一段不一定指的是s1和s2从同一个位置开始。递归过程中,并没有记录这样的s1、s2字串比较的历史信息;而dp的解法是比较一次记录一次比较的历史信息,下次再判断的时候就可以利用上历史的比较信息了。

dp的过程(http://blog.csdn.net/linhuanmars/article/details/24506703)已经说的很好了。

这里有个细节需要注意一下,就是最外层的循环k代表从s1和s2截取字符串的长度。这里为了在下标表示方便,定义为n+1维;这样的好处就在于循环中的k直接表示的就是需要比较的子字符串的长度,不用考虑k-1这一类的内容。

这题的dp思路太精妙,只能学习膜拜。

完毕。

===================================================

第二次过这道题,dp的做法没时间去过了,用“深搜+剪枝”的做法更直观一些。

class Solution {
public:
bool isScramble(string s1, string s2) {
if ( s1.size()!=s2.size() ) return false;
int count[] = {};
for ( int i=; i<s1.size(); ++i ){
count[(int)s1[i]]++;
count[(int)s2[i]]--;
}
for ( int i=; i<; ++i ) { if ( count[i]!= ) return false; }
if ( s1.size()== ) return s1[]==s2[];
for ( int l=; l<s1.size(); ++l ){
bool possible = Solution::isScramble(s1.substr(,l), s2.substr(,l)) &&
Solution::isScramble(s1.substr(l, s1.size()-l), s2.substr(l, s2.size()-l));
if ( possible ) return true;
possible = Solution::isScramble(s1.substr(,l), s2.substr(s2.size()-l,l)) &&
Solution::isScramble(s1.substr(l,s1.size()-l), s2.substr(,s2.size()-l));
if ( possible ) return true;
}
return false;
}
};

【Scramble String】cpp的更多相关文章

  1. 【Interleaving String】cpp

    题目: Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2. For example,Given: ...

  2. 【Valid Sudoku】cpp

    题目: Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules. The Sudoku board could ...

  3. 【WildCard Matching】cpp

    题目: Implement wildcard pattern matching with support for '?' and '*'. '?' Matches any single charact ...

  4. 【Add binary】cpp

    题目: Given two binary strings, return their sum (also a binary string). For example,a = "11" ...

  5. 【Implement strStr() 】cpp

    题目: Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if ne ...

  6. 【Valid Palindrome】cpp

    题目: Given a string, determine if it is a palindrome, considering only alphanumeric characters and ig ...

  7. 【Valid Parentheses】cpp

    题目: Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the ...

  8. 【Simplify Path】cpp

    题目: Given an absolute path for a file (Unix-style), simplify it. For example,path = "/home/&quo ...

  9. 【Valid Number】cpp

    题目: Validate if a given string is numeric. Some examples:"0" => true" 0.1 " = ...

随机推荐

  1. CAD Import .NET支持AutoCAD DWG 2013

    CADSoftTools发布了CAD Import .NET 9一个新版本.NET开发库,可以提供给开发人员导入AutoCAD DWG.DXF.HPGL.PLT.CGM等格式的功能. 在新版本中,CA ...

  2. [QualityCenter]设置工作流脚本-根据某字段是否包含指定字符串来判断其他字段的选值

    需求:当在创建或更改值时,自动判断A字段是否包含B值,然后自动填写相应的内容. 如以下例子: 在脚本编辑器新建一个函数TestPlan_Test_New,然后编写脚本如下: '通过主题判断项目内容   ...

  3. springMvc-视图模型封装及注解参数

    1.视图模型封装,ModelAndView可以向页面返回视图的同时吧模型也传入页面 2.注解参数,springMvc很好的地方在于简单,高效,@RequestParam注解能非常好的取得页面参数 代码 ...

  4. java Vamei快速教程03 构造器和方法重载

    作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明.谢谢! 在方法与数据成员中,我们提到,Java中的对象在创建的时候会初始化(initial ...

  5. 二叉搜索树(BST)学习笔记

    简介 二叉搜索树(\(Binary\ Search\ Tree\)),简称\(BST\),用于在一个集合中查找元素. 性质 若它的左子树不为空,则左子树上所有节点的值都小于根节点的值 若它的右子树不为 ...

  6. 剑指offer:按之字形顺序打印二叉树(Python)

    题目描述 请实现一个函数按照之字形打印二叉树,即第一行按照从左到右的顺序打印,第二层按照从右至左的顺序打印,第三行按照从左到右的顺序打印,其他行以此类推. 解题思路 先给定一个二叉树的样式: 前段时间 ...

  7. windows下安装python的包管理工具pip,scikit-learn

    打开https://pip.pypa.io/en/latest/installing.html#python-os-support 下载pip-get.py 进入python,执行pip-get.py ...

  8. python 读取mat文件

    import osimport scipy.io as sio import numpy as np #matlab文件名 matfn='/home/user/devkit/data/meta_det ...

  9. 梁勇(Danniel Liang) java教材例题:java程序购买额按税率求营业税 java中数值保留2位小数的方法

    package com.swift; import java.util.Scanner; public class PurchaseTaxDecimalsTwo { public static voi ...

  10. 三十五、MySQL 运算符

    MySQL 运算符 本章节我们主要介绍 MySQL 的运算符及运算符的优先级. MySQL 主要有以下几种运算符: 算术运算符 比较运算符 逻辑运算符 位运算符 算术运算符 MySQL 支持的算术运算 ...