87. Scramble String 题目 解析 "【LeetCode】87. Scramble String解法及注释" 题意在于判断一个字符串是否为另一个字符串“乱序”得到,这种乱序采用的方式是将一个字符串从某个位置“割开”,形成两个子串,然后对两个子串进行同样的“割开”操作,直到到达叶子节点 ...
分类:
其他好文 时间:
2018-04-11 00:18:24
阅读次数:
140
题目: 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 represen ...
分类:
编程语言 时间:
2017-12-15 21:35:06
阅读次数:
216
class Solution { public boolean isScramble(String s1, String s2) { if(s1.length()==0||s1.equals(s2)) return true; int[] cnt=new int[128]; for(int i=0;... ...
分类:
其他好文 时间:
2017-09-28 10:04:45
阅读次数:
124
字符串的好题。题干解释的很复杂。一下让人不知所措了。 这道题究竟是什么意思呢?终于的结果是把一个字符串中字母的顺序打乱了,让你推断一个字符串能不能由还有一个字符串打乱得到。那打乱这个过程是怎么做的呢,非常easy。给你一个字符串,你必须先找一个点把它砍成两半,你能够通过交换这两半的顺序来打乱源字符串 ...
分类:
其他好文 时间:
2017-06-18 15:14:20
阅读次数:
101
粘贴两个特别简单的冒泡排序 2014: Scramble Sort Description In this problem you will be given a series of lists containing both words and numbers. The goal is to so ...
分类:
编程语言 时间:
2017-05-17 20:56:32
阅读次数:
218
一些不能一次bug-free的题目 Scramble String "great" -> "rgtae" 方法一:使用分治。需要注意的是前段和后端匹配时候的表达式,不能想当然。 1 public boolean isScramble(String s1, String s2) { 2 if (s1. ...
分类:
其他好文 时间:
2016-10-31 11:03:44
阅读次数:
341
learning how to order eggs is really important!sunny side up : 煎一面荷包蛋over easy egg: 煎双面,蛋黄没熟over medium egg:煎双面,蛋黄有一点硬fried egg:全熟鸡蛋scramble egg:炒蛋 bo ...
分类:
其他好文 时间:
2016-10-09 09:02:46
阅读次数:
179
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 representati ...
分类:
其他好文 时间:
2016-09-20 12:11:35
阅读次数:
121
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 representati ...
分类:
其他好文 时间:
2016-07-31 00:01:28
阅读次数:
335
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 representati ...
分类:
其他好文 时间:
2016-07-21 23:52:03
阅读次数:
419