Description:Count the number of prime numbers less than a non-negative number,n.Hint:Let's start with aisPrimefunction. To determine if a number is pr...
分类:
其他好文 时间:
2015-07-29 00:34:37
阅读次数:
138
1、错误描述java.lang.IllegalArgumentException: sheetName '' is invalid - character count MUST be greater than or equal to 1 and less than or equal to 31
at org.apache.poi.ss.util.WorkbookUtil.validateShee...
分类:
编程语言 时间:
2015-07-28 21:13:47
阅读次数:
440
select count(distinct user_id) from dm_user where ds=20150701;
使用disticnt函数,所有的数据只会shuffle到一个reducer上,导致reducer数据倾斜严重
优化后为
set mapred.reduce.tasks=50;
select count(*) from
(select user_id...
分类:
其他好文 时间:
2015-07-28 13:11:29
阅读次数:
103
【038-Count and Say(计数和表述)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题 The count-and-say sequence is the sequence of integers beginning as follows:
1, 11, 21, 1211, 111221, ...
1 is read off as "one 1"...
分类:
编程语言 时间:
2015-07-28 06:42:49
阅读次数:
156
//冒泡排序$arr=array(23,5,26,4,9,85,10,2,55,44,21,39,11,16,55,88,421,226,588);$n =count($arr);//echo $n;for($h=0;$h$arr[$i+1]){//判断数组大小,颠倒位置$kong=$arr[$i+...
分类:
编程语言 时间:
2015-07-27 22:52:54
阅读次数:
174
题目链接:http://poj.org/problem?id=2777题意:给定长度L的区间,初始全部为1。两种操作
1. 更新:C A B C 将区间[A,B]全部赋值为C。
2. 查询:P A B 查询区间[A,B]的颜色种数。思路:基本为裸的区间更新。
因为最多只有30种颜色,所以在存储某个区间的颜色类型和种数时,可以利用一个int数来存储(利用每一位的二进制,1为有该颜色,0位无该...
分类:
其他好文 时间:
2015-07-27 21:00:57
阅读次数:
124
Description:Count the number of prime numbers less than a non-negative number,n.Credits:Special thanks to@mithmattfor adding this problem and creating...
分类:
其他好文 时间:
2015-07-27 20:53:48
阅读次数:
194
1.列出至少有一个员工的所有部门。(两个表联合查询,及group by...having的用法)select dname from dept where deptno in(select deptno from emp group by deptno having count(*)>1);2.列出薪...
分类:
数据库 时间:
2015-07-27 18:15:42
阅读次数:
144
一、 聚合函数
1.1 求和函数-----SUM()
求和函数SUM( )用于对数据求和,返回选取结果集中所有值的总和。
语法:SELECT SUM(column_name) FROM table_name
说明:SUM()函数只能作用于数值型数据,即列column_name中的数据必须是数值型的。
1.2 计数函数-----COUNT()
COUNT()函数用来计算表中记...
分类:
数据库 时间:
2015-07-27 15:09:07
阅读次数:
238
1 select DATE_FORMAT(createtime,'%Y-%m'),count(*) from test where user =8 group by DATE_FORMAT(createtime,'%Y-%m');//按月统计数据2 select DATE_FORMAT(create...
分类:
数据库 时间:
2015-07-27 14:41:59
阅读次数:
127