题目: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 onl...
分类:
其他好文 时间:
2015-06-09 00:45:04
阅读次数:
115
防爆盾:#pragma comment(linker,"/QUEUE:10240000,10240000")#pragma comment(linker,"/STACK:10240000,10240000")O2加速#pragma GCC optimize ("O2")
分类:
其他好文 时间:
2015-06-08 00:54:11
阅读次数:
102
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 only O(k) extra space?
题意:和上一题差别在于只能用...
分类:
其他好文 时间:
2015-05-29 12:07:02
阅读次数:
124
转自:http://www.pedant.cn/2014/09/10/webview-optimize-points/我们在native与网页相结合开发的过程中,难免会遇到关于WebView一些共通的问题。就我目前开发过程中遇到的问题以及最后得到的优化方案都将在这里列举出来。有些是老生常谈,有些则是...
分类:
移动开发 时间:
2015-05-27 12:03:57
阅读次数:
135
本文收集于本人的笔记本,由于找不到原文出处。在此省略,如哪位知道可以联系我加上。核心是利用mysql系统表和“optimize table 表名”命令,对mysql数据表进行空间的释放。由于delete和drop table都不会释放表空间(truncate 命令会释放表空间【将所有的数据都删除】)...
分类:
数据库 时间:
2015-05-25 20:13:19
阅读次数:
210
https://issues.apache.org/jira/browse/HIVE-2340selectuserid,count(*)fromu_datagroupbyuseridorderbyuseridwillproductMRR.Ithinkwhentheresultofuserid,count(*)issmall(onereducecanprocesstheresult).ThisqueryplancanoptimizetoMR?Topreventbadreducermerging,thereduc..
分类:
其他好文 时间:
2015-05-25 14:46:24
阅读次数:
124
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 only O(k) extra space?
从后往前计算
//用一个数组滚...
分类:
其他好文 时间:
2015-05-19 22:39:04
阅读次数:
151
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 only O(k) extra space?
基本思路:
内层循环,使用...
分类:
其他好文 时间:
2015-05-17 16:51:36
阅读次数:
111
@echo offecho please input phpCB url:set /p input=cd /d "E:\tools\phpCB\"phpCB --space-after-if --optimize-eol --space-after-switch --space-after-whil...
分类:
Web程序 时间:
2015-05-16 17:55:00
阅读次数:
274
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 only O(k) ex...
分类:
其他好文 时间:
2015-05-12 15:45:55
阅读次数:
143