摘要:
Meet Hadoop1.1 Data!(数据)Most of the data is locked up in the largest web properties (like search engines), or scientific or financial institutions, is... 阅读全文
摘要:
今天项目使用到ScrollView嵌套HorizontalScrollView,ScrollView里包括GridView,发现几个问题非常经典。在此记录:问题1.ScrollView嵌套HorizontalScrollView跳变问题。ScrollView、HorizontalScrollView... 阅读全文
摘要:
int gcd(int n,int m)//n>m{ //最大公约数 int r; while(m) { r = n%m; n = m; m = r; } return n;}int kgcd(int a,int b){ ... 阅读全文
摘要:
【题目】Given a binary tree containing digits from0-9only, each root-to-leaf path could represent a number.An example is the root-to-leaf path1->2->3which... 阅读全文
摘要:
本文的原文连接是: http://blog.csdn.net/freewebsys/article/details/46695513 转载请一定注明出处。1,关于beegobeego是一个用Go开发的应用框架,思路来自于tornado,路由设计来源于sinatra,支持例如以下特性M... 阅读全文
摘要:
语法:Type ::= InfixType ExistentialClausesExistentialClauses ::= „forSome‟ „{‟ ExistentialDcl{semi ExistentialDcl} „}‟ExistentialDcl ::= „type‟ TypeDcl|... 阅读全文
摘要:
在上篇笔记的基础上,本文介绍Sparkclient的基本配置及Spark任务提交方式。1. Sparkclient及基本配置从Spark官网下载的pre-built包中集成了Sparkclient,如与hadoop ver1.x兼容的Sparkclient位于spark-1.3.1-bin-hado... 阅读全文
摘要:
这道题是为数不多的感觉在读本科的时候见过的问题。人工构造的过程是如何呢。兴许遍历最后一个节点一定是整棵树的根节点。从中序遍历中查找到这个元素,就能够把树分为两颗子树,这个元素左側的递归构造左子树,右側的递归构造右子树。元素本身分配空间,作为根节点。于set和map容器不同的是。vector容器不含f... 阅读全文
摘要:
Mini Dock是前面忘记了提,这里做一些补充。 Mini Dock是Mac OSX的一个值得大书特书的亮点。尽管windows下也有类似的东西,但Mac下却提供了更为全面的功能。通过Mini Dock栏。能够高速切换、隐藏、关闭正在执行的APP。这也就比之前讲过的Mission Control... 阅读全文
摘要:
关于 Builder 模式 详述:http://blog.csdn.net/jjwwmlp456/article/details/39890699先来张图看到 Android 中 使用了 Builder 模式的地方还是非常多的。使用时 大概例如以下:Notification noti = new N... 阅读全文