码迷,mamicode.com
首页 >  
搜索关键字:optimize    ( 719个结果
NetAdvantage 笔记
1.UltraControlBase ClassMembers 1.BeginUpdate Method Sets theIsUpdatingflag to true which prevents painting. This is used to optimize performan...
分类:Web程序   时间:2014-11-25 23:07:03    阅读次数:473
Android日志:代码混淆,使用说明
主要先简单的介绍三个主要文件,在sdk下的proguard里面:  我的SDK路径为H:\Android\android-sdk-windows\tools\proguard     proguard-android.txt//系统配置好一些默认选项,考虑的比较详细,最好不要修改     proguard-android-optimize.txt//系统配置好一些默认选项,考虑的比较详...
分类:移动开发   时间:2014-11-21 12:39:48    阅读次数:263
Pascal's Triangle II
Given an indexk, return thekthrow of the Pascal's triangle.For example, givenk= 3,Return[1,3,3,1].Note:Could you optimize your algorithm to use onlyO(...
分类:其他好文   时间:2014-11-13 18:32:04    阅读次数:183
Python标准库:内置函数compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)
这个函数用来编译一段字符串的源码,结果可以生成字节码或者AST(抽像语法树),字节码可以使用函数exec()来执行,而AST可以使用eval()来继续编译。参数source是一串字符串的源码,或者是AST对象数组。参数filename是读取字符串的文件对象,如果不是从文件里读取源码来编译,那么这里可以放一些用来标识这些代码的字符串。参数mode是用来指明那种表示的源码类型;如果是exec类型,表示...
分类:编程语言   时间:2014-11-12 21:19:50    阅读次数:295
[LeetCode] Pascal's Triangle II
Given an indexk, return thekthrow of the Pascal's triangle.For example, givenk= 3,Return[1,3,3,1].Note:Could you optimize your algorithm to use onlyO(...
分类:其他好文   时间:2014-11-09 23:25:25    阅读次数:219
Leetcode-Pascal's Triangle II
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1].Note:Could you optimize your algorithm to use...
分类:其他好文   时间:2014-11-08 10:26:18    阅读次数:173
Pascal's Triangle II
Given an indexk, return thekthrow of the Pascal's triangle.For example, givenk= 3,Return[1,3,3,1].Note:Could you optimize your algorithm to use onlyO(...
分类:其他好文   时间:2014-11-06 16:41:45    阅读次数:165
android代码混淆笔记
proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt #proguard.config=${sdk.dir}/tools/proguard/proguard-android-optimize.txt:proguard-project.txt...
分类:移动开发   时间:2014-11-05 14:52:10    阅读次数:171
How to optimize Magento performance
OverviewThis guide demonstrates how to optimize Magento performance. Most optimizations will work with any version of Magento. Those intended for spec...
分类:其他好文   时间:2014-11-02 23:53:51    阅读次数:209
[Leetcode] Pascal's Triangle II
Given an indexk, return thekthrow of the Pascal's triangle.For example, givenk= 3,Return[1,3,3,1].Note:Could you optimize your algorithm to use onlyO(...
分类:其他好文   时间:2014-11-02 12:11:32    阅读次数:138
719条   上一页 1 ... 66 67 68 69 70 ... 72 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!