var value=0.041991;//04.1991
var value_str;
if(String(value).length>8){
value_str=String(value).substring(0,8);
}else{
value_str=String(value);
}
var temp_str = {str: value_str, startIndex: 1...
分类:
其他好文 时间:
2014-11-26 14:29:38
阅读次数:
172
You are given a string, S, and a list of words, L, that are all of the same length. Find all starting indices of substring(s) in S that is a concatena...
分类:
其他好文 时间:
2014-11-26 10:56:13
阅读次数:
182
Palindrome PartitioningGiven a strings, partitionssuch that every substring of the partition is a palindrome.Return all possible palindrome partitioni...
分类:
其他好文 时间:
2014-11-25 22:48:55
阅读次数:
241
1.类型转换:parseInt\parseFloat\Number\==2.本地对象的方法:String:concat\split\substring\substr\match\replaceNumber:toFixedArray:concat\join\slice\spliceRegExp:exe...
分类:
编程语言 时间:
2014-11-25 20:33:08
阅读次数:
259
1 选择分支 0.00 ${royalties } 2 判断 在线 离线 3. 三目运算 ${fn:length(pr.req_remark)>21 ? fn:substring(pr.req_remark,0,21) : pr.req_rem...
分类:
Web程序 时间:
2014-11-25 17:50:58
阅读次数:
199
1、运算符比较运算符(7种):==/===/!=/>/====(全等于)2、字符串substring的用法3、练习题:累加求和(运用Js的方法)4、进制转换
分类:
Web程序 时间:
2014-11-24 22:05:15
阅读次数:
171
类型转换:parseInt\parseFloat\toString类型判断:typeof;eg:if(typeof(var)!="undefined")\isNaN字符处理函数:toLowerCase\touppercase\substring(从哪里截到哪)\substr(从哪里开始;截多少个字符...
分类:
Web程序 时间:
2014-11-24 17:07:08
阅读次数:
164
Write a function to find the longest common prefix string amongst an array of strings.思路:每个字符串都与第0个字符串比较,设置一个变量,记录每个字符串与第0个字符串不匹配位置的最小值 时间复杂度O(n1+n2.....
分类:
其他好文 时间:
2014-11-24 16:55:19
阅读次数:
244
记忆化搜索,跟以前的做过的 滑雪 一样的。
DP+DFS。用dp[][]保存搜索记录,然后满足条件累加即可。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x7ffffff...
分类:
其他好文 时间:
2014-11-24 13:37:30
阅读次数:
226
使用双指针,i遍历全部字符,start收集重复的次数,最后不重复出现的字符个数maxx为i-start+1;// main.cpp// Longest Substring//// Created by Bowie Hsu on 14/11/21.// Copyright (c) 2014年 Bowi...
分类:
其他好文 时间:
2014-11-24 13:21:59
阅读次数:
142