给出一个数组,求出最大子数组的和以及始末位置。
直接给出代码解释:int sub_array(int *array,int n)
{
int max2 = -INF;
int sum = 0;
int cur = 0;
int count2 = 0;
int flag;
int _end;
/*时间复杂度:o(n) 空间复杂度:o(1) */...
分类:
编程语言 时间:
2015-06-16 21:16:41
阅读次数:
230
Problem DescriptionGiven a string containing only 'A' - 'Z', we could encode it using the following method: 1. Each sub-string containing k same char....
分类:
其他好文 时间:
2015-06-16 20:52:24
阅读次数:
135
def x="I like to read books before bed"def temp = x.split(" ")log.info "Size of array is : "+temp.lengthlog.info temp[0]log.info temp[1]log.info x.sub...
分类:
其他好文 时间:
2015-06-16 16:37:45
阅读次数:
122
Related commands
相关命令
PSUBSCRIBE
PUBLISH
PUBSUB
PUNSUBSCRIBE
SUBSCRIBE
UNSUBSCRIBE
Pub/Sub
SUBSCRIBE, UNSUBSCRIBE and PUBLISH implement
the Publish/Subscribe messaging paradigm ...
分类:
Web程序 时间:
2015-06-15 23:54:30
阅读次数:
183
redis使用场景:1.在主页中显示最新的项目列表。2.删除和过滤3.排行榜及相关问题。4.按照用户投票和时间排序。5.过期项目处理。6.计数。7.特定时间内的特定项目。8.实时分析正在发生的情况,用于数据统计与防止垃圾邮件等。9.Pub/Sub。10.队列。11.缓存。12.关注者..
分类:
其他好文 时间:
2015-06-12 22:33:29
阅读次数:
166
00401010 push ebp00401011 mov ebp,esp00401013 sub esp,50h00401016 push ebx00401017 push esi00401018 p...
分类:
其他好文 时间:
2015-06-12 17:06:41
阅读次数:
108
初衷之前我们要在js域更新model,需要这样:model.set('name', 'sub');这实在太土了。。。
我们希望像angularjs一样,直接:$scope.name = 'sub';然后bong, 视图就会更新!这样的黑科技必定是极好的。目标
完成model更新黑科技
200行以内完成
实现今次主要借鉴avalon“劫持”setter,getter的方法,链接:avalon简化版解...
分类:
Web程序 时间:
2015-06-11 13:04:27
阅读次数:
156
如果想利用单个类做太多事情,其内往往就会出现太多实例变量。一旦如此,Duplicated Code也就接踵而至。解决方法:1.将类内彼此相关的变量,将它们放在一起。使用Extract Class手法,将彼此相关的变量提炼到新的类。2.如果1中的新类适合作为一个子类,那么可以使用Extract Sub...
分类:
其他好文 时间:
2015-06-11 08:10:49
阅读次数:
180
';print_r($var); echo ''; }else{ echo $var;}}$pattern='/[0-9]/';$subject='asd78dfgfd1dfg2asdf8sadf6asdf9';$m1=$m2=array();$t1=preg_match($pattern,$sub...
分类:
Web程序 时间:
2015-06-11 00:07:31
阅读次数:
191
Sub 宏1()'' 宏1 宏'' With Selection.Validation .Delete .Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:=xlBetween, For...
分类:
其他好文 时间:
2015-06-10 10:14:14
阅读次数:
127