题目描述:
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.
For example,
Given:
s1 = "aabcc",
s2 = "dbbca",
When s3 = "aadbbcbcac", return true.
When s3 = "aadbb...
分类:
其他好文 时间:
2015-05-19 19:14:56
阅读次数:
117
声明:本文主要介绍Matlab2011b中 Statistics Toolbox工具箱里与隐马尔科夫模型相关的函数及其用法(请勿与其它HMM工具箱混淆)。本文的主要内容来自Matlab 2011b的帮助文档,为作者自学笔记。水平有限,笔记粗糙,本着“交流探讨,知识分享”的宗旨,希望对HMM感兴趣的同学有些许帮助,欢迎指教,共同进步。
变量说明:
设有M个状态,N个符号Markov模型。
...
分类:
其他好文 时间:
2015-05-19 19:12:48
阅读次数:
253
【题目】
Given a 2D board and a word, find if the word exists in the grid.
The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or ...
分类:
其他好文 时间:
2015-05-19 19:13:24
阅读次数:
121
面向过程通过划分功能模块和函数相互间的调用来实现一条条的业务流程,但需求变化时,就需要更改函数,被改动的函数有多少地方在调用它,关联多少数据是很不容易弄得清楚的,函数的修改极有可能引起不必要的BUG出现,维护和调试中所耗费的大多数时间不是在修改bug,而是在寻找bug……抱怨需求总是变化是没用的,改变开发过程才是王道,面向对象编程方式的诞生,就是为解决变化带来的问题。
面向对象封装可能会...
分类:
其他好文 时间:
2015-05-19 19:12:02
阅读次数:
125
一、背景
每次分析用户访谈的结果,用户对性能总是不满意。软件开发商不遗余力投入资源来提升系统性能,是乎没收到预期的效果。客户想了解整个系统用户的访问情况,而我们只能给出单个功能优化功能前后的效果,达不到用户期望。
二、提升用户性能体验面临的问题
1. 用户使用体验的问题:无法将用户的感知量化、可视化的呈现。缺乏用户行为的记录,用户投诉以后,很难还原问题的现场。...
分类:
其他好文 时间:
2015-05-19 19:13:09
阅读次数:
222
通俗地说:动态规划就是将一个可以划分为子问题的问题进行递归求解,不过动态规划将大量的中间结果保存起来,不管它们是否会用得到,从而在后面的递归求解过程中可以快速求解。由此可以看得出来动态规划是一个以牺牲空间为代价换取时间的算法。
一、首先先观察问题是否符合动态规划最明显的两个特征:最优子结构和重叠子问题。
二、建立状态转移方程...
分类:
其他好文 时间:
2015-05-19 19:12:23
阅读次数:
137
Gson User GuideAuthors: Inderjeet Singh, Joel Leitch, Jesse WilsonOverviewGson is a Java library that can be used to convert Java Objects into their JSON representation. It can also be used to convert...
分类:
其他好文 时间:
2015-05-19 19:10:51
阅读次数:
98
案例1:
#include
using namespace std;
void main(void)
{
// char* a 与 char a[] 的区别
char* a = "abcdef"; // a为一指针,其值可以改变。现在a指向的是一常量字符串
cout << a << endl;
a = "ghijkl"; // a现在指向另一常量...
分类:
其他好文 时间:
2015-05-19 19:11:02
阅读次数:
118
#include
#include using namespace std;#define MAX_N 100
#define MAX_W 1000int n,W;// 从第i个物品开始挑选总重量小于j的部分
int rec(int i,int j)
{
int res;
if(i==n)
res=0; // 已经没有剩余物品了...
分类:
其他好文 时间:
2015-05-19 19:12:26
阅读次数:
105
【题目】
Given a 2D board and a list of words from the dictionary, find all words in the board.
Each word must be constructed from letters of sequentially adjacent cell, where "adjacent" cells are...
分类:
其他好文 时间:
2015-05-19 19:10:30
阅读次数:
214
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include...
分类:
其他好文 时间:
2015-05-19 19:12:05
阅读次数:
631
题目大意:有2^L个长度为L的字符串,字符串只能有f或m组合而成,问这些字符串中不含有fmf或着fff的字符串有多少个解题思路:设f(n)为字符串长度为n,且字符串中不包含fmf或者fff的字符串个数
假设现在填到第n位了,最后一个字符如果填的是m的话,那么f(n-1)的都可以填
最后一位填的如果是f的话,这就要考虑一下了,最后三位的话只可能是mmf,mff,fff,fmf,排除掉fff,fmf...
分类:
其他好文 时间:
2015-05-19 19:10:05
阅读次数:
103
【基本概念】单链表即单向链表,数据结构为一个接一个的结点组成,每个结点有两个成员,一个数据域一个指向下一个结点的指针,如下:struct Node
{
int data;
struct Node *next;
};单链表基本操作包括链表初始化、插入、删除,其中初始化操作是指让单链表存在一个头结点,其数据域随机,头结点指向下一个结点,每次访问都要从头结点开始访问,插入结点方式有两种,尾...
分类:
其他好文 时间:
2015-05-19 19:09:05
阅读次数:
194
1:登录微信公众号
开发者中心-配置项-服务器配置
(1)URL服务器地址:填写自己平台的地址,
例如:http://w.wizincloud.com/langlang_manage/wechat?appid=wxd86103f87aa0f7c0
可以用一个restful接口或者servlet来接收。加上一个参数appid,来标识是哪个公众号...
分类:
其他好文 时间:
2015-05-19 19:11:37
阅读次数:
271
试用了一下网上提供的DropDownListView 感觉很怪怪的 只要数据不够铺满全屏 listview的头布局不会隐藏掉,可以实现点击刷新,加载更多也是一样的 如果数据是加满全屏的 这样感觉使用起来非常舒服了,具体效果看demo
demo下载地址 http://download.csdn.net/detail/u012303938/8717103
看代码...
分类:
其他好文 时间:
2015-05-19 19:09:33
阅读次数:
106
自定义Condition
编写自定义的condition,可以实现自定义的条件判断逻辑,需要实现org.apache.tools.ant.taskdefs.condition.Condition接口,只有一个必须实现的方法就是eval,用于返回条件判断结果。
比如:实现一个用于判断一个字符串是否全部大写的Condition。
步骤:
1.新建Java工程
2.引入ant库
ant相关的...
分类:
其他好文 时间:
2015-05-19 19:10:55
阅读次数:
417
【题目】
There are a total of n courses you have to take, labeled from 0 to n
- 1.
Some courses may have prerequisites, for example to take course 0 you have to first take course 1, which is exp...
分类:
其他好文 时间:
2015-05-19 19:08:51
阅读次数:
177