题目描述Given a number sequence whose length is n, you
can delete at most k numbers in the sequence.After that you are asked to answer
the maximum length ...
分类:
其他好文 时间:
2014-05-19 22:21:32
阅读次数:
304
在java代码中经常会出现以下代码:String name;……………………if(null ==
name || name.length == 0){ return; }这行代码用freemaker中怎么实现呢?
分类:
其他好文 时间:
2014-05-19 20:18:16
阅读次数:
260
template html(模板文件): 有如下一个form:from django import
formsclass UploadFileForm(forms.Form): title = forms.CharField(max_length=50)
file ...
分类:
其他好文 时间:
2014-05-19 11:45:23
阅读次数:
317
NSMutableAttributedString *attrString =
[[NSMutableAttributedString alloc] initWithString:title]; NSRange range =
NSMakeRange(0, [attrString length...
分类:
其他好文 时间:
2014-05-19 11:20:27
阅读次数:
236
function(name) { var
query=location.search.substring(1); var pairs=query.split("&"); for(var
i=0;i<pairs.length;i++) ...
分类:
其他好文 时间:
2014-05-19 10:43:27
阅读次数:
266
题目:查找元素target插入一个数组中的位置。代码:public int
searchInsert(int[] A, int target) { int len = A.length; int i; for(i = 0 ; i
< len ; i++){ ...
分类:
其他好文 时间:
2014-05-18 20:28:13
阅读次数:
299
数学函数绝对值 abs()圆周率 PI()平方根 sqrt()模除取余
mod(被除数,除数)随机数 rand()四舍五入 round(数字)次方 pow(5,2)e为底的指数函数 exp(数字)字符串函数字符长度
length(字符)字符连接 concat(字符1,字...
分类:
数据库 时间:
2014-05-18 20:05:37
阅读次数:
469
Given a stringS, find the longest palindromic
substring inS. You may assume that the maximum length ofSis 1000, and there
exists one unique longest pa...
分类:
其他好文 时间:
2014-05-18 19:39:55
阅读次数:
355
public class InsertSort{ public static void
sort(int[] a) { int N = a.length; int count = 0; for (int i = 1; i 0; j--) { if
(a[j] < a[j-1]) ...
分类:
其他好文 时间:
2014-05-17 14:27:04
阅读次数:
225
案例1:查询表A数据,如果某个列(PARAM_VALUE)值太长,前台不好显示,就只取前20个字符;鼠标悬浮时再用层显示全部值;
sql写法:
select
m.PARAM_VALUE as PARAM_VALUE,
decode(sign(length(m.PARAM_VALUE)-20),1,CONCAT(SUBSTR(m.PARAM_VALUE,0,20),'...'),m.PARAM...
分类:
数据库 时间:
2014-05-15 23:53:08
阅读次数:
625