[root@kypulolampp]#rpm-qa|grepmysqlmysql-community-release-el6-5.noarchmysql-community-client-5.6.20-4.el6.i686mysql-community-libs-5.6.20-4.el6.i686mysql-community-common-5.6.20-4.el6.i686mysql-community-server-5.6.20-4.el6.i686[root@kypulolampp]#yumremove..
分类:
数据库 时间:
2014-09-08 10:58:57
阅读次数:
512
The ChallengeOftentimes in the world of Dynamics CRM, the need arises for non-CRM users to gain access to CRM data. A common solutionis the implementa...
分类:
其他好文 时间:
2014-09-08 02:09:26
阅读次数:
594
题意:给一串数字,问长度为m的严格上升子序列有多少个解法:首先可以离散化为10000以内,再进行dp,令dp[i][j]为以第i个元素结尾的长度为j的上升子序列的个数,则有dp[i][j] = SUM(dp[k][j-1]) (a[k] #include #include #include #inc...
分类:
其他好文 时间:
2014-09-08 02:08:16
阅读次数:
240
最近在项目中大量的使用了JSON, 发现JSON和XML的功能相近,都是一种数据传输格式。只是与XML相比JSON显得更加轻量级,使用也更加容易。JSON依赖的第三方jar包: commons-beanutils.jar commons-collection.jar common...
分类:
Web程序 时间:
2014-09-07 18:28:55
阅读次数:
158
1、img标签 -- 代表HTML图像img标签是单独出现的,语法:属性:Common-- 一般属性 (公共属性) eg: class id title(图片的提示文字,当鼠标停留到图片上时,会提示相关文字) onclick style ...alt-- 代表图像的替代文字 (alt属性 --为无法...
分类:
Web程序 时间:
2014-09-07 18:27:15
阅读次数:
378
最长公共子序列
时间限制:3000 ms | 内存限制:65535 KB
难度:3
描述 咱们就不拐弯抹角了,如题,需要你做的就是写一个程序,得出最长公共子序列。
tip:最长公共子序列也称作最长公共子串(不要求连续),英文缩写为LCS(Longest Common Subsequence)。其定义是,一个序列 S ,如果分别是两个或多个已知序列的子序列,且是所有符合此条件序列中最...
分类:
其他好文 时间:
2014-09-07 17:20:25
阅读次数:
221
Introduction to common InterfacesIDataErrorInfoProvides the functionality to offer custom error information that a user interface can bind to..NET Fra...
分类:
其他好文 时间:
2014-09-07 17:10:05
阅读次数:
136
Write a function to find the longest common prefix string amongst an array of strings.思路:依次比较即可。 1 class Solution { 2 public: 3 string longestComm...
分类:
其他好文 时间:
2014-09-07 14:46:45
阅读次数:
150
LCA算法:LCA(Least Common Ancestor),顾名思义,是指在一棵树中,距离两个点最近的两者的公共节点。也就是说,在两个点通往根的道路上,肯定会有公共的节点,我们就是要求找到公共的节点中,深度尽量深的点。还可以表示成另一种说法,就是如果把树看成是一个图,这找到这两个点中的最短距离...
分类:
其他好文 时间:
2014-09-07 10:56:34
阅读次数:
234
Distinct Subsequences
Given a string S and a string T, count the number of distinct subsequences of T in S.
A subsequence of a string is a new string which is formed from the original string b...
分类:
其他好文 时间:
2014-09-06 22:37:44
阅读次数:
208