/// <summary> /// 递归【输入一个日期】返回【前12个月每月最后一天】 /// </summary> /// <param name="date">输入日期</param> /// <param name="i">循环次数(0-11)</param> /// <returns></r ...
分类:
其他好文 时间:
2016-05-21 15:38:01
阅读次数:
140
Problem: Write a function that takes a string as input and returns the string reversed. Example: Given s = "hello", return "olleh". One possible Solut ...
分类:
其他好文 时间:
2016-05-21 01:17:47
阅读次数:
140
1. 创建测试自定义函数(1) CREATE DEFINER=`dbdh`@`localhost` FUNCTION `test`.`sp_function_dbdh_three`() RETURNS varchar(255) CHARSET utf8BEGIN DECLARE l_NEW_STR ...
分类:
数据库 时间:
2016-05-19 13:14:44
阅读次数:
205
1.如果指定了toString()返回值的格式,则应该提供一个对应的静态工厂方法1.1BigInteger.toString()/* * Returns the String representation of this BigInteger in the * given radix.* /
public String toString(int radix) {
/**
* Returns th...
分类:
其他好文 时间:
2016-05-18 18:44:43
阅读次数:
215
Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. 暴力 KMP 以后写。。 ...
分类:
其他好文 时间:
2016-05-17 21:20:04
阅读次数:
139
range 1.list of integers; 2.range(i, j) returns [i, i+1, i+2, ..., j-1]; 3.>>> range(1,5,2) [1, 3] >>> range(0,5,1) [0, 1, 2, 3, 4] >>> range(0,5,2) [ ...
分类:
其他好文 时间:
2016-05-14 21:23:44
阅读次数:
217
344. Reverse String Write a function that takes a string as input and returns the string reversed. Example: Given s = "hello", return "olleh". 题目大意: 字 ...
分类:
编程语言 时间:
2016-05-14 18:44:19
阅读次数:
179
本文介绍剩下的一些常用的 String 中的方法。 1、replace 方法 、replaceFirst 方法和 replaceAll 方法 replace(char oldChar, char newChar)Returns a string resulting from replacing al ...
分类:
编程语言 时间:
2016-05-14 11:27:04
阅读次数:
178
Reverse String Reverse String Write a function that takes a string as input and returns the string reversed. Example:Given s = "hello", return "olleh" ...
分类:
其他好文 时间:
2016-05-13 18:53:32
阅读次数:
124
/// <summary> /// 传输方法 /// </summary> /// <param name="url">接口地址</param> /// <param name="ms">序列化后的数据</param> /// <returns></returns> public static JO ...