My original thought was to calculate all the
possible transactions by using nested loop. But got time limit excess error.I
knew it can be done in O(n)...
分类:
其他好文 时间:
2014-05-29 20:44:37
阅读次数:
271
arm-linux-gcc -static -o lcd_show
lcd_show.csudo mount -o loop initrd.img XXX (XXX -- your mount directory)sudo cp
lcd_show XXX/bin/sudo umount XXXsky...
分类:
其他好文 时间:
2014-05-26 14:39:56
阅读次数:
281
一、buffer overflow,limit of 10000 bytes
declare
begin
for c in 1..1000 loop
dbms_output.put_line('测试测试测试');
end loop;
end;
缓冲区默认大小为10000 bytes。循环1000次一共有6000个汉字,也就是12000 bytes。在SQL窗口的输出标签页可设置缓冲...
分类:
数据库 时间:
2014-05-26 06:14:00
阅读次数:
333
//
// fs_loop_queue.h
// fsnet
//
// Created by Vincent on 14-5-22.
// Copyright (c) 2014年 Vincent. All rights reserved.
//
#ifndef fsnet_fs_loop_queue_h
#define fsnet_fs_loop_queue_h
#include "...
分类:
其他好文 时间:
2014-05-24 23:36:41
阅读次数:
450
举例说:脚本名称叫test.sh 入参三个: 1 2 3运行test.sh 1 2
3后$*为"1 2 3"(一起被引号包住)$@为"1" "2" "3"(分别被包住)$#为3(参数数量)如脚本:#!/bin/shfor loop in
"$*" do echo $loop done输出循环一...
分类:
系统相关 时间:
2014-05-24 10:09:30
阅读次数:
304
1 @echo off2 :loop3 datamaker4 std5 me6 fc std.out
me.out7 if not errorlevel 1 goto loop8 pause9 goto loop对拍模板。
分类:
其他好文 时间:
2014-05-23 03:43:23
阅读次数:
295
1,Master初始化
1.1
if (!this.stopped) {
finishInitialization(startupStatus, false);
loop();
}
1.2 finishInitialization(),这里主要完成master组件components:filesystem manager,servermanager,assig...
分类:
其他好文 时间:
2014-05-21 09:23:05
阅读次数:
269
编程题:用goto语句实现,求1+2+...+100的结果。#include<stdio.h>voidmain(){intn=1,s=0;loop:if(n<=100) { s=s+n; n=n+1; gotoloop; } printf("1+2+3+...+100=%d\n",s);}goto语句介绍:运行结果:总结:goto语句为无条件转移语句。一般不推荐使用。
分类:
其他好文 时间:
2014-05-20 19:35:30
阅读次数:
552
{pc:contentaction="hits"catid="6"num="10"day="30"}//hits表示调用点击排行榜,catid调用的排行来自哪个栏目,num调用排行前10的栏目,day调用30天内的点击排行<ol>//为排行添加名次{loop$data$h}<li><ahref="{$h[‘url‘]}">{$h[‘title‘]}</a></li..
分类:
Web程序 时间:
2014-05-20 17:30:35
阅读次数:
389
和其他的DP帖子只是灌输思考之后的结果不同,这篇是DP算法的自我体会,应该是设计DP算法的思考过程。
斯以为,这才是拿到一问题,从思考到解决最精华的部分:)
犹记得第一次看到算法导论上拿最长与最短路径来说明DP中最优子结构证明过程的一个细节的时候,心里激动不已,国内的教材完全不考虑这个,而是把伟人思考之后的东西呈现给新人。
我第一看到,心想,这就是我要的东西,包括之前的loop in...
分类:
其他好文 时间:
2014-05-20 15:40:21
阅读次数:
215