LoadRunner的两个不一致及原因分析和解决办法(Controller和Analysis;Summary Peport和Graphs-Average Transaction Response )...
分类:
其他好文 时间:
2015-02-26 16:39:41
阅读次数:
226
将一网友的XMPP代码从ADT转到AS时,发现其使用了第三方类库,源码放在了lib下,直接在AS中Import project,第三方类库并没有自动导入进来,看来需要自己动手了。项目的目录结构如下:XMPP$ ls
app build.gradle gradlew import-summary.txt XMPP.iml
build gradle gradlew.b...
分类:
移动开发 时间:
2015-02-26 14:59:15
阅读次数:
196
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4989题目意思:给出 n 个数,然后将这些数两两相加,得到 n*(n-1) /2 对和,把重复的和去掉,最后相加起来。 用STL中的set可以好方便的做出来,因为 insert 的时候它会自动去除重复的....
分类:
其他好文 时间:
2015-02-24 11:23:30
阅读次数:
182
给一个方法,比如 rand5(), 它能够等概率生成 1-5 之间的整数。 所谓等概率就是1,2,3,4,5 生产的概率均为 0.2 。现在利用rand5(), 构造一个能够等概率生成 1- 7 的方法。这里有两个特别重要的点,一是 如果 rand5() + rand5(), 我们能够产生一个均匀分...
分类:
其他好文 时间:
2015-02-21 06:30:54
阅读次数:
174
chapter 4 自省, summary: # 用可选和命名参数定义和调用函数 # 用 str 强制转换任意值为字符串形式 # 用 getattr 动态得到函数和其它属性的引用 # 扩展列表解析语法实现列表过滤 # 识别 andor 技巧并安全地使用它 # 定义 lambda 函数 ...
分类:
编程语言 时间:
2015-02-20 21:58:59
阅读次数:
277
Summary (online only, 6 bullet points, 1-2 sentences each)-Helicobacter pylori persistently colonizes the gastric mucosa of humans, infecting roughly ...
分类:
其他好文 时间:
2015-02-18 19:54:04
阅读次数:
171
chapter 1, Summary:In this chapter, we briefly introduced the Python programming language and the main concepts behind geospatial development. We have...
分类:
编程语言 时间:
2015-02-18 17:36:59
阅读次数:
201
Consider the problem of storing n books on shelves in a library. The order of the books is fixedby the cataloging system and so cannot be rearraged. T...
分类:
其他好文 时间:
2015-02-10 07:04:06
阅读次数:
187
Insertion sortis a simplesorting algorithmthat builds the finalsorted array(or list) one item at a time. It is much less efficient on large lists than...
分类:
其他好文 时间:
2015-02-08 12:50:38
阅读次数:
195
Given an integer array, heapify it into a min-heap array.For a heap array A, A[0] is the root of heap, and for each A[i], A[i * 2 + 1] is the left chi...