随机返回list对象 /** * 返回随机List * @param list 备选 * @param selected 备选数量 * @return */ public List getRandomNum(List list, int select...
分类:
其他好文 时间:
2014-06-25 21:34:40
阅读次数:
341
java JNI 调试出现的错误ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2JDWP exit error AGENT_ERROR_NO_JNI_ENV(183): [../../../s....
分类:
编程语言 时间:
2014-06-25 21:02:35
阅读次数:
395
新建一个tags.pyfrom django import templateregister = template.Library()def short_msg(value): if len(value) > 50: return value[:50]+" ......" ...
分类:
其他好文 时间:
2014-06-25 20:56:43
阅读次数:
203
第一种模式:工厂方式varlev=function(){return"啊打";};functionParent(){varChild=newObject();Child.name="李小龙";Child.age="30";Child.lev=lev;returnChild;};varx=Parent...
分类:
Web程序 时间:
2014-06-24 21:38:10
阅读次数:
285
//阶乘 public static int rec(int n){ if(n==1){ return 1; }else{ return n*rec(n-1); } }
分类:
编程语言 时间:
2014-06-24 18:59:04
阅读次数:
257
// 加密function encrypt($str) { return base64_encode($str.AUTH_KEY);}// 解密function decrypt($str) { $info = base64_decode($str); $len = strlen(A...
分类:
其他好文 时间:
2014-06-24 13:41:10
阅读次数:
237
/** * 得到系统内存信息的工具类 * @author zwenkai */public class SystemInfoUtils { /** * 得到运行的进程总个数 * * @param context * @return 运行进程个数 */ public static int getRun...
分类:
其他好文 时间:
2014-06-24 12:31:36
阅读次数:
172
Given a list, rotate the list to the right by k places, where k is non-negative.For example:Given 1->2->3->4->5->NULL and k = 2,return 4->5->1->2->3->...
分类:
其他好文 时间:
2014-06-24 12:00:32
阅读次数:
142
<?php function build_order_no(){ return date('Ymd').substr(implode(NULL, array_map('ord', str_split(substr(uniqid(), 7, 13), 1))), 0, 8); ...
分类:
Web程序 时间:
2014-06-24 11:59:06
阅读次数:
345
class Solution {public: int maxProfit(vector &prices) { int len = prices.size(); if (len < 1) return 0; int sum = 0; in...
分类:
其他好文 时间:
2014-06-24 11:28:47
阅读次数:
193