码迷,mamicode.com
首页 >  
搜索关键字:min    ( 21007个结果
《MySQL必知必会》读书笔记_3
PS:这次的信息量有点大。聚集不同值SELECTAVG(DISTINCTprod_price)ASavg_priceFROMproductsWHEREvend_id=1003#相同的值不会被计算组合聚集函数SELECTCOUNT(*)ASnum_items,MIN(prod_price)ASpric...
分类:数据库   时间:2014-07-09 22:39:17    阅读次数:321
poj-4046-Sightseeing-最短路
首先算出mp[i][j]: 以i为最高点,i到j的最短距离是多少。 然后对于每次询问,枚举最高点。 结果就为min(mp[i][st]+mp[i][ed]+val[i]); 但是这个题我用SFL优化了一下。。 #include #include #include #include #include #include #include #include #include #include ...
分类:其他好文   时间:2014-07-08 16:59:36    阅读次数:204
利用辛达拉姆筛进行素数判定
1 常规判定方法        素数判定问题就是对给定的正整数n判定是否为素数。所谓素数,是指恰好有2个约数的整数。因为n的约数都不超过n,所以只需要检查2~n-1的所有整数是否整除n就能判定是不是素数。不过,我们还能进一步优化。如果d是n的约数,那么n/d也是n的约数。由n=d*n/d可知min(d,n/d),所以只需要检查2~的所有整数就足够了。此时,素数判定的复杂度为O()。代码实现如下:...
分类:其他好文   时间:2014-07-08 16:00:24    阅读次数:309
duilib之源码分析
http://blog.csdn.net/wogel/article/details/9631781duilib之源码分析《duilib之源码分析》 1 stdAfx.h* lengthof(x) 计算数组长度宏* MAX两值最大* MIN两值最小* CLAMP(x,a,b) x在a,b之间则取x否...
分类:其他好文   时间:2014-07-06 22:49:25    阅读次数:457
poj 2393 Yogurt Factory(贪心)
DescriptionThe cows have purchased a yogurt factory that makes world-famous Yucky Yogurt. Over the next N (1 #includeint min(int a,int b){ if(a>b) ...
分类:其他好文   时间:2014-07-06 14:21:54    阅读次数:215
java生成随机整数
1. 使用Random类的nextInt方法:Random rand = new Random();rand.nextInt(max);, 此时输出[0,max),注意右边是开区间,如果需要设定最小值可通过 rand.nextInt(max-min+1)+min方式,此时的范围为[min,max]i...
分类:编程语言   时间:2014-07-06 14:14:11    阅读次数:257
Oracle组函数、多表查询、集合运算、数据库对象(序列、视图、约束、索引、同义词)等
count组函数:(过滤掉空的字段)select count(address),count(*) from b_usermax() avg() min(),sum()select sum(age),max(age),min(age),avg(nvl(age,0)) from b_user1 260 ...
分类:数据库   时间:2014-07-06 12:58:24    阅读次数:364
选择排序
#include void selection_sort(int unsorted[], int count) {     for (int i = 0; i 1; i++) {         int min = unsorted[i], min_index = i;         for (int j = i; j             if (unsorte...
分类:其他好文   时间:2014-07-06 00:36:27    阅读次数:225
【剑指offer】q34:丑数
题目要求第n个丑数,所以对于中间结果不需要保存。 def Humble(index): curHum = 1 M2 = 2; M3 = 3; M5 = 5 while index > 1: curHum = min(min(M2, M3), M5) while M2 <= curHum: M2 *= 2 while M3 <= curHum: M3 *= 3 w...
分类:其他好文   时间:2014-07-03 17:29:40    阅读次数:214
UVA 624 CD
CD  You have a long drive by car ahead. You have a tape recorder, but unfortunately your best music is on CDs. You need to have it on tapes so the problem to solve is: you have a tape N min...
分类:其他好文   时间:2014-07-03 15:34:36    阅读次数:176
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!