CROHomeCRAAddController *temp
=[[CROHomeCRAAddControlleralloc] init]; temp.modalTransitionStyle =
UIModalTransitionStyleFlipHorizontal; temp.modalP...
分类:
移动开发 时间:
2014-05-01 01:43:33
阅读次数:
456
根据random方法,Math.random()方法返回的是0到1的随机数(不包含0和1):```javascript//生成k个m到n的随机数,返回数组
function Temp(m,n,k) { var all = new Array(); for (var ...
分类:
Web程序 时间:
2014-04-30 15:20:39
阅读次数:
519
求出两个数的最大公约数 1 int foo(int v1, int v2) 2 { 3
while(v2) { 4 int temp = v2; 5 v2 = v1 % v2; 6 v1 = temp; 7 } 8 9 re...
分类:
其他好文 时间:
2014-04-30 04:42:13
阅读次数:
404
create function [dbo].[HtoSec](@lvalue as
int)RETURNS intBEGINDECLARE @temp intSet @temp = @lvalue * 60 * 60RETURN
@tempENDcreate function [dbo].[GetT...
分类:
数据库 时间:
2014-04-29 22:04:03
阅读次数:
515
//冒泡排序publicclassbubblesorter{publicvoidsort(int[]list){inti,j,temp;booldone=false;j=1;while((jlist[i+1]){done=false;temp=list[i];list[i]=list[i+1];li...
分类:
其他好文 时间:
2014-04-29 17:21:45
阅读次数:
429
Buffer sort引发的血案
今天遇到的一个问题,在线系统上,有两张表,test1大概50G,test2大概200G,需要查询出来test1表中部分记录,并且这些记录不存在test2表中。于是就写了一个sql:select
t1.* from test1 t1, test2 t2 where.....
分类:
数据库 时间:
2014-04-28 03:49:50
阅读次数:
824