There are generally two methods to write DFS
algorithm, one is using recursion, another one is using stack. (reference from
Wiki Pedia)Pseudocode for ...
分类:
其他好文 时间:
2014-06-13 08:39:34
阅读次数:
218
1,MESSAGE: Input files reads and reference have
incompatible contigs: Relative ordering of overlapping contigs differs, which is
unsafe.##### ERROR re...
分类:
其他好文 时间:
2014-06-13 07:46:21
阅读次数:
1050
//counting sort
计数排序//参考算法导论8.2节#include#include#include#includeusing namespace std;const int
k=5;const int n=7;int a[n]={5, 5, 1, 2 , 5, 4, 1};int b[...
分类:
其他好文 时间:
2014-06-12 23:08:11
阅读次数:
237
最基本的api 是对比色,对与我这种菜鸟来说,没有什么比在一个背景色下
用什么颜色的文字坑蛋疼的事情了,这个工具可以帮助大家很好解决这个问题api
地址http://compass-style.org/reference/compass/utilities/color/contrast/要是真的能实...
分类:
其他好文 时间:
2014-06-11 08:35:12
阅读次数:
209
GitHub已然是全球最流行的开源项目托管平台,项目数量目前已经达到了千万级别。Adereth在Counting Stars on GitHub一文提供了一个非常有意思的思路,那就是籍GitHub用户通过星星标记感兴趣项目的数目,来观察GitHub中用户最流行的是什么编程语言。
老规矩,让我们用Power BI来分析一下吧。首先从Adereth的博客下载相关数据,然后用Power Query倒入...
分类:
编程语言 时间:
2014-06-10 07:18:01
阅读次数:
642
今天发现自己连Bundle类都没有搞清楚,于是花时间研究了一下。依据google官方的文档(http://developer.android.com/reference/android/os/Bundle.html)Bundle类是一个key-value对,“A
mapping from Strin...
分类:
移动开发 时间:
2014-06-10 00:36:28
阅读次数:
247
1、autorelease是什么?autorelease是一种支持引用计数的内存管理方式它可以暂时的保存某个对象(object),然后在内存池自己的排干(drain)的时候对其中的每个对象发送release消息注意,这里只是发送release消息,如果当时的引用计数(reference-counte...
分类:
其他好文 时间:
2014-06-09 22:37:52
阅读次数:
405
1、主数据的概念借用其他网站的一个数据分类模型,我们可以看到有元数据(metadata),引用数据(Reference Data),主数据(Master
Data),企业结构数据(Enterprise structure Data),交易活动数据(Transaction Activity Data)...
分类:
其他好文 时间:
2014-06-08 21:51:33
阅读次数:
301
附网址:http://qt-project.org/doc/qt-5/qmlreference.html
The QML Reference
QML是用来创建高度动态应用程序的声明式语言。在QML中,应用程序通过类似UI组件这样的模块搭建起来,通过设置这些模块的属性可以定义应用程序的行为。当与JavaScript结合起来时,应用程序的行为将变得脚本化。另外,QML大量使用Qt,它允许Q...
分类:
其他好文 时间:
2014-06-08 17:55:58
阅读次数:
355
POJ 2282 The Counting Problem,组合数学
ACM
题目地址:POJ 2282
题意:
给出俩数n,m,求从n~m中0~9分别出现的次数。
分析:
组合数学。
只要能快速算出0~n中各个数的出现次数就能解决问题了。
要把数拆开来看,比如3456=3000+400+50+6。
然后就只要考虑后面都是0的数就行了。
0~...
分类:
其他好文 时间:
2014-06-07 15:38:04
阅读次数:
195