做法1: List list = new List(); Random rand = new
Random(); while (list.Count =1,=0,<100 之间的随机数m、n,颠倒arr[m]和arr[n]的数。 int[] arr
= new int[100]; //把100个数顺...
分类:
其他好文 时间:
2014-05-30 04:27:12
阅读次数:
208
本文希望通过简单的总结,把常用的查询方法予以总结,希望能够明确在心主要涵盖:模糊查询、排序、分组、集合函数、TOP、Case包括:Between、In、Like、And、Or、Order
by包括:Group by、Distinct、MAX\MIN、Avg、Count、Sum、Having、Top、...
分类:
数据库 时间:
2014-05-29 23:13:46
阅读次数:
456
sql server 全部库:declare @i int,@id int,@dbname
varchar(255),@sql varchar(255) set @i = 6 set @id=(select count(*) from
master..sysdatabases)drop ...
分类:
数据库 时间:
2014-05-29 22:15:06
阅读次数:
310
本篇文章介绍下redis排序命令.redis支持对list,set和sorted
set元素的排序。排序命令是sort 完整的命令格式如下:SORT key [BY pattern] [LIMIT start count] [GET
pattern] [ASC|DESC] [ALPHA] [STOR...
分类:
其他好文 时间:
2014-05-29 09:02:28
阅读次数:
318
题目: Say you have an array for which the ith element
is the price of a given stock on day i. Design an algorithm to find the maximum
profit. You may co...
分类:
其他好文 时间:
2014-05-28 22:37:18
阅读次数:
327
1:查找某个字段相同select * from orders where serial_number
in (select serial_number from ordersgroup by serial_numberhaving
count(serial_number) > 1)
分类:
数据库 时间:
2014-05-28 19:51:21
阅读次数:
386
一、寄存器的英文全称AH&AL=AX(accumulator):累加寄存器
BH&BL=BX(base):基址寄存器 CH&CL=CX(count):计数寄存器 DH&DL=DX(data):数据寄存器
SP(Stack Pointer):堆栈指针寄存器 BP(Base Pointer):基址指针寄...
分类:
其他好文 时间:
2014-05-28 19:09:52
阅读次数:
300
/*题目:计算1~100中所有3的倍数的个数*/#includeintmain(){//记录3的倍数的个数intcount=0;//记录当前检查的数值intnumber=0;while(number<100){number++;//说明number是3的倍数if(number%3==0){count...
分类:
其他好文 时间:
2014-05-28 18:55:27
阅读次数:
196
BsCapters::model()->findAllBySql("select
count(*) as bookids from bs_capters where bookid = ".$bookid." and urlid =
".$urlid)count(*) as xxx这个xxx必须是表里...
分类:
其他好文 时间:
2014-05-28 11:32:16
阅读次数:
275
–-表现最差的前10名使用查询SELECT TOP 10 ProcedureName =
t.text, ExecutionCount = s.execution_count, AvgExecutionTime = isnull (
s.total_elapsed_time / s.executio...
分类:
数据库 时间:
2014-05-28 11:25:22
阅读次数:
449