Trie树,第一次写,简单的建树+搜索它的思路hiho上讲得很清楚,good~ 1 #include 2 #include 3 using namespace std; 4 char word[11]; 5 int n,m; 6 struct trie 7 { 8 int num; 9 ...
分类:
其他好文 时间:
2014-07-19 21:17:39
阅读次数:
205
Counting
The Problem
Gustavo knows how to count, but he is now learning how write numbers. As he is a very good student, he already learned 1, 2, 3 and 4. But he didn't realize yet tha...
分类:
其他好文 时间:
2014-07-18 22:04:36
阅读次数:
322
一、扩展函数原型的更好办法://定义下面的通用方法
Function.prototype.method=function(name,func){
this.prototype[name]=func;
returnthis;
};
//使用上面的通用方法作为工具进行扩展,以免每次扩展都访问Function.prototype.XXX(that‘sugly).
Number.method(‘integer‘,fun..
分类:
编程语言 时间:
2014-07-17 09:44:42
阅读次数:
259
All good so far. We next want to delete the branch on github. However, if we do this the naive way:git push origin :masterwe just get an error like th...
分类:
其他好文 时间:
2014-07-16 19:33:09
阅读次数:
231
1、一般性规则避免使用attach写函数是尽量少的使用stop()定义S3和S4的对象不要混在一起使用2、文件命名以.r结束的文件,尽可能的增加信息在文件名里面,比如Good:predict_ad_revenue.RBad:foo.R3、变量名和函数命名规则# 注意,在R环境下,大小写是敏感的变量:...
分类:
其他好文 时间:
2014-07-16 15:28:17
阅读次数:
231
def say_goodnight(name) result ="Good night ." +name return resultenddef say_goodmorning(name) result ="Good morning .#{name}" return resultendde...
分类:
其他好文 时间:
2014-07-14 14:14:34
阅读次数:
189
Spring-Boot's auto-configurer seems good for simple applications. For example it automatically creates DataSource and JdbcTemplate, when you need to c...
分类:
数据库 时间:
2014-07-14 09:39:24
阅读次数:
442
《JavaScript:TheGoodParts》,解释了JavaScript编程的精髓。理解本书能够解释我们实际编程中遇到的很多问题,并且有助于写出高质量的代码。这里总结了一下要点,其主要内容涉及到JavaScript特殊的语法,理解Prototype,正确解析this的指代,函数对象的使用,闭包的使用等。1.J..
分类:
编程语言 时间:
2014-07-13 14:14:27
阅读次数:
216
IntroductionIn labs 6 and 7, you will replicate the lock service using the replicated state machine approach. SeeSchneider's RSM paperfor a good, but ...
分类:
其他好文 时间:
2014-07-13 11:44:52
阅读次数:
248
个人学习整理,如有不足之处,请不吝指教。转载请注明:@CSU-Max
文件描述符
每个UNIX进程都有一个文件描述符范围,其大小为0到N,N标志文件描述符的最大值,N的大小取决于UNIX的版本及系统配置。
标准文件描述符
一般在进程运行时前三个文件描述符就已经打开了。
文件描述符 0 : 标准输入
文件描述符 1 : 标准输出...
分类:
系统相关 时间:
2014-07-12 22:41:14
阅读次数:
346