5.4 Eliminating loop inefficiencies A general class of optimizations is known as code motion. They involve identifying a computation that isperformed ...
分类:
其他好文 时间:
2018-03-29 02:10:23
阅读次数:
140
Chapter 5 查找 1- 顺序查找法 O(n) 2- 折半查找O(logn) :二分查找 要求:关键字有序 过程: 判定树:叶子结点为方框,代表不成功的结点。 3- 分块查找:索引顺序查找 ASL = ASL1+ASL2 4- 二叉排序树(BST) 特点:左<根<右 5- 平衡二叉树(AVL) ...
分类:
其他好文 时间:
2018-03-25 18:15:34
阅读次数:
214
Chapter 10. Arrays 要明白elementtype与componenttype There are some situations in which an element of an array can be an array: if the element type is Obje ...
分类:
其他好文 时间:
2018-03-22 17:31:46
阅读次数:
145
第一步: 第二部: 查看文档: https://pay.weixin.qq.com/wiki/doc/api/app/app.php?chapter=9_7&index=3 “支付结果通知” =》通知参数为微信回调结果。返回参数是返回给微信的参数。 参考: ...
分类:
微信 时间:
2018-03-15 13:23:09
阅读次数:
222
这是阅读《Java编发编程实战》这本Java多线程领域的宝典书籍的自我总结与融汇贯通的过程。现在看到了第二部分的第七章,我自己先在我们几个人中,做一个开头,把自己学习到的分享出来。现在只是多线程原子性总结了出来,今天陆续吧可见性和不变性都总结出来,贴上来。这些学习,都算是基础夯实的过程,再多的框架,... ...
分类:
编程语言 时间:
2018-03-11 11:54:36
阅读次数:
195
概念 异步函数(asynchronous funcation)是TPL之上的更高级别的抽象,真正简化了异步编程。抽象隐藏了主要的实现细节,使得程序员无须考虑许多重要的事情,从而使异步编程更容易。 更多内容 创建异步函数,首先用async关键字标注一个方法 注:本文是在阅读《C#多线程编程实战》后所写 ...
Chapter Review 1. They are called functions. 2. It causes the contents of the file to be substituted for this directive before final compilation. 3. I ...
分类:
编程语言 时间:
2018-02-26 23:26:26
阅读次数:
205
Chapter 4. The class File Format Chapter 4. The class File Format Table of Contents 4.1. The ClassFile Structure4.2. Names4.2.1. Binary Class and Inte ...
分类:
其他好文 时间:
2018-02-26 14:59:05
阅读次数:
188
Chapter 3. Compiling for the Java Virtual Machine Table of Contents 3.1. Format of Examples3.2. Use of Constants, Local Variables, and Control Constru ...
分类:
编程语言 时间:
2018-02-25 17:25:37
阅读次数:
178
Chapter 2. The Structure of the Java Virtual Machine 内容列表 2.1. The class File Format (class文件的格式)2.2. Data Types (数据类型)2.3. Primitive Types and Values ...
分类:
编程语言 时间:
2018-02-24 15:00:51
阅读次数:
177