官方地址:http://dojotoolkit.org/reference-guide/1.10/dojo/_base/lang.html#dojo-base-lang应用加载声明:require(["dojo/_base/lang"], function(lang){ // lang now c....
分类:
其他好文 时间:
2014-07-09 22:09:00
阅读次数:
431
官方地址:http://dojotoolkit.org/reference-guide/1.10/dojo/json.html#dojo-jsonrequire(["dojo/json", "dojo/dom", "dojo/on", "dojo/domReady!"],function(JSON,...
分类:
Web程序 时间:
2014-07-09 21:51:12
阅读次数:
276
官方地址:http://dojotoolkit.org/reference-guide/1.10/dojo/string.html#dojo-stringrequire(["dojo/string"], function(string){ var a = string.pad("pad me", ....
分类:
其他好文 时间:
2014-07-09 21:28:13
阅读次数:
202
IOS开发中的CGFloat、CGPoint、CGSize和CGRecthttp://developer.apple.com/library/ios/#documentation/GraphicsImaging/Reference/CGGeometry/Reference/reference.htm...
分类:
移动开发 时间:
2014-07-09 00:54:36
阅读次数:
247
1、定义shared_ptr的作用有如同指针,但会记录有多少个shared_ptrs共同指向一个对象。这便是所谓的引用计数(reference counting)。一旦最后一个这样的指针被销毁,也就是一旦某个对象的引用计数变为0,这个对象会被自动删除。这在非环形数据结构中防止资源泄露很有帮助。aut...
分类:
编程语言 时间:
2014-07-09 00:36:15
阅读次数:
250
Python GC主要运用了“引用计数”(reference counting)来跟踪和回收垃圾。在引用计数的基础上,通过“标记-清除”(mark and sweep)解决容器对象可能产生的循环引用的问题。通过“分代回收”(generation collection)以空间换取时间来提高垃圾回收效率。
引用计数
在Python中,大多数对象的生命周期都是通过对象的引用计数来管理的。从广义上...
分类:
编程语言 时间:
2014-07-08 19:59:45
阅读次数:
275
最近做图像的时候,突然有个idea,需要进行聚类,其实算法很简单,但是当时很急,就直接使用了scipy的cluster。
使用起来其实很简单,但是中文的文章很少,所以就简单的介绍一下,感兴趣的也可以自己去看一下英文的文档:http://docs.scipy.org/doc/scipy/reference/cluster.html。
这是我从stackoverflow看到的一个demo,如果只是...
分类:
其他好文 时间:
2014-07-08 19:25:48
阅读次数:
309
1)控制台操作 http://blog.csdn.net/stude/article/details/76450562)一些函数,容器和库: http://www.cplusplus.com/reference/3)C++内存管理 http://www.cnblogs.com/lancidie...
分类:
编程语言 时间:
2014-07-08 11:44:09
阅读次数:
187
官方地址:http://dojotoolkit.org/reference-guide/1.10/dojo/domReady.html#dojo-domreadydom加载完成后,执行。require(["dojo/domReady!"], function(){ // will not be c....
分类:
其他好文 时间:
2014-07-08 00:43:09
阅读次数:
250
SAM基本操作 拓扑求每个节点的 最左出现left,最右出现right,出现了几次num ......
对于每一个出现两次以上的节点,对其所对应的一串子串的长度范围 [fa->len+1,len] 和其最大间距 right-left比较
即可......
Boring counting
Time Limit: 2000/1000 MS (Java/Others) Memor...
分类:
其他好文 时间:
2014-07-06 11:04:26
阅读次数:
162