Crossing River
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 10218
Accepted: 3859
Description
A group of N people wishes to go across a river with only...
分类:
其他好文 时间:
2014-05-09 14:51:43
阅读次数:
257
metacharactersrelationtomatch:*:0-multi+:1-multi?:0-1{n},{n,m},{n,}:thenumberofmatchingstringswitcheg:pattern="lynn|coco"src1="hello,mynameislynn"result1="lynn"src2="hello,mynameiscoco"result2="coco"ignorecaseeg:pattern="(?i)Lynn"src="hello,mynameislynn"res..
分类:
其他好文 时间:
2014-05-09 14:26:32
阅读次数:
237
一、常用编译相关的快捷键1、编译(单个文件) Ctrl+F72、连接 F73、运行
Ctrl+F5二、常用调试相关的快捷键1、GO(全速运行) F52、Stop Debuging(停止运行) Shift+F53、Restart(重新运行)
...
分类:
编程语言 时间:
2014-05-09 10:22:09
阅读次数:
287
CommandActionNotesvim file +54open file and go to
line 54any : command can be run using + on command linevim -O file1 file2open
file1 and file2 side b...
分类:
其他好文 时间:
2014-05-09 10:15:18
阅读次数:
420
《编程之道》出自美国一位资深的程序设计师 Geoffrey James
之手。相传作者早起打太极拳的时候,突然开悟,悟到了编程之道。本文章我自己整理的番外篇,哈哈哈,有点儿无节操。1.1程序员见禅师:我学了 hello world
和水仙花数,想自己开发个操作系统,希望大师指点。禅师笑而不语,抓来一...
分类:
其他好文 时间:
2014-05-09 10:13:22
阅读次数:
244
Map map = new
TreeMap();//TreeMap本身具有排序功能(默认按键升序排序)map.put(12, "hello");map.put(7,
"bravestarr");map.put(20, "world");System.out.println(map.toString(...
分类:
其他好文 时间:
2014-05-09 09:28:49
阅读次数:
282
问题如题,这个问题困扰了我好几天,今天终于解决了,感谢[1]。首先,我要做的是android手机和电脑进行蓝牙通信,android发一句话,电脑端程序至少就要做到接受到那句话。android端发送信息的代码如下:try
{ Log.i("Test", "begin saying hello wor....
分类:
其他好文 时间:
2014-05-09 08:12:56
阅读次数:
505
最近无聊,再学学unp吧。学学网络编程。下面是一个demo:intro/daytimetcpcli.c#include
"unp.h"intmain(int argc, char **argv){ int sockfd, n; char ...
分类:
其他好文 时间:
2014-05-09 06:39:40
阅读次数:
333
1.汇编语言实现,汇编和链接器分别为as86和ld86。代码如下:
.globl begtext,begdata,begbss,endtext,enddata,endbss
.text
begtext:
.data
begdata:
.bss
begbss:
.text
BOOTSEG=0x7c0
entry start
start:
jmpi go,BOOTSEG
go:
mov ax,...
分类:
其他好文 时间:
2014-05-09 06:29:56
阅读次数:
365
1, Nginx 安装,http://nginx.org/en/download.html.下载解压,configure,make ,make install.安装过程中确实包,需要先下载安装依赖包2,安装lighttpd的spawn-fastcgi 下载http://www.lighttpd.net/download/lighttpd-1.4.19.tar.gz ./configuremake...
分类:
其他好文 时间:
2014-05-09 01:46:02
阅读次数:
358