纯属为了练习haskell, 竟然贴代码都没办法高亮。challenges/fp-update-listUpdate the values of a list with their absolute values. The input and output portions will be hand...
分类:
其他好文 时间:
2014-06-21 11:42:15
阅读次数:
228
#Region Project Attributes #ApplicationLabel: SwitchingWindow #VersionCode: 20140615 #VersionName: 'SupportedOrientations possible values: unspecif...
分类:
其他好文 时间:
2014-06-19 07:55:52
阅读次数:
281
插入 日期时间 循环插入declare total date:= trunc(sysdate-1) ; begin for i_count in 1..10000 LOOP insert into DQ_DATE(date_time) values ( total ); total...
分类:
数据库 时间:
2014-06-18 21:25:39
阅读次数:
302
上图是一个带标题栏的Activity。有些时候我们希望能去除这个标题栏,做法如下:1. 在res/values目录下面创建styles.xml。如果你已经有这个文件了,那么直接打开这个文件,添加如下代码: 2. 打开AndroidManifest.xml文件,在需要去除标题栏的acti...
分类:
移动开发 时间:
2014-06-18 20:49:34
阅读次数:
278
Given a binary tree, return thepostordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1].No...
分类:
其他好文 时间:
2014-06-18 17:32:02
阅读次数:
168
#Region Project Attributes #ApplicationLabel: MyFirstProgram #VersionCode: 1 #VersionName: 'SupportedOrientations possible values: unspecified, lan...
分类:
其他好文 时间:
2014-06-18 13:46:13
阅读次数:
254
FP Growth算法利用了巧妙的数据结构,大大降低了Aproir挖掘算法的代价,他不需要不断得生成候选项目队列和不断得扫描整个数据库进行比对。为了达到这样的效果,它采用了一种简洁的数据结构,叫做frequent-pattern tree(频繁模式树)。...
分类:
编程语言 时间:
2014-06-18 12:22:01
阅读次数:
495
android.permission.ACCESS_CHECKIN_PROPERTIES 允许读写访问"properties"表在checkin数据库中,改值可以修改上传( Allows read/write access to the "properties" table in the checkin database, to change values that get uploaded)
...
分类:
移动开发 时间:
2014-06-17 21:58:57
阅读次数:
437
具体代码
###############################
#
# Funciton: micro_template_compile
#
# Parameter:
# [1] => template :String
# [2..n] => values for placeholder as key=value
#
# Example:
# <- micro_tem...
分类:
其他好文 时间:
2014-06-17 16:23:47
阅读次数:
172
if object_id('tempdb..#tt')>0 drop table #tt--模拟数据create table #tt (cc datetime)insert into #tt values('2013-02-01')insert into #tt values('2013-05-16...
分类:
其他好文 时间:
2014-06-17 14:06:19
阅读次数:
194