比较简单的检测网络: 1 /** 2 * 检查网络是否连接 3 * @param context 4 * @return 5 */ 6 public boolean isNetworkConnected(Context context) { 7 if (context != null...
分类:
移动开发 时间:
2015-06-11 16:16:38
阅读次数:
114
SRM 1462500RectangularGridProblem StatementGiven thewidthandheightof a rectangular grid, return the total number of rectangles (NOT counting squares) ...
分类:
其他好文 时间:
2015-06-11 16:16:18
阅读次数:
144
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:
其他好文 时间:
2015-06-11 16:12:11
阅读次数:
104
Remove Element
题目:
Given an array and a value, remove all instances of that value in place and return the new length.
The order of elements can be changed. It doesn’t matter what you leave beyo...
分类:
其他好文 时间:
2015-06-11 14:44:37
阅读次数:
132
/**@DO获取指定日期的农历日期*@paramdate[指定日期]*@return(NSString)[指定日期的农历字符串]*/+(NSString*)getChineseCalendarWithDate:(NSDate*)date{/*天干名称*/constchar*cTianGan[]={"...
分类:
移动开发 时间:
2015-06-11 14:27:40
阅读次数:
154
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning ofs...
分类:
其他好文 时间:
2015-06-11 14:20:49
阅读次数:
93
定义: String.prototype.replaceAll?=?function(s1,s2)?{
?????return?this.replace(new?RegExp(s1,"gm"),s2);
} 实例: 将所有的"\"转化为"_" docpath?=?docpath.replaceAll("\\\\","_")?;...
分类:
编程语言 时间:
2015-06-11 13:11:07
阅读次数:
109
A peak element is an element that is greater than its neighbors.Given an input array where num[i] ≠ num[i+1], find a peak element and return its index.The array may contain multiple peaks, in that case...
分类:
其他好文 时间:
2015-06-11 13:04:38
阅读次数:
115
一、常见的字符串处理函数// 返回字符的长度,一个中文算2个String.prototype.ChineseLength = function() { return this.replace(/[^\x00-\xff]/g, "**").length;}// 去掉字符串两端的空白字符String.p...
分类:
编程语言 时间:
2015-06-11 12:47:02
阅读次数:
196
解析指定格式为对象/** * 解析指定格式为对象 * @param string格式数据:**** * @param obj 对象 * @return */ public static Object setParamToObj(String string,Object obj){ Str...
分类:
其他好文 时间:
2015-06-11 12:41:46
阅读次数:
101