Update: July 4, 2014 Chap 5: At the beginning, he mentioned that: recursion is a divide-and-conquer method. Although many algorithms can be solved in ...
分类:
其他好文 时间:
2014-07-06 15:24:36
阅读次数:
213
不知道怎么回事,实验室的电脑在同学搞过之后,每次启动都报错rpcbind: cannot open '/run/rpcbind/rpcbind.xdr' file for reading, errno 2 (no such file or directory)rpcbind: cannot open...
分类:
其他好文 时间:
2014-07-06 14:45:46
阅读次数:
301
/****************************************************************** find the biggest x number in a sequence* the basic method is the same as the Quic....
分类:
其他好文 时间:
2014-07-06 13:12:01
阅读次数:
176
Description
Little John is herding his father's cattles. As a lazy boy, he cannot tolerate chasing the cattles all the time to avoid unnecessary omission. Luckily, he notice that there were N trees...
分类:
其他好文 时间:
2014-07-06 10:39:09
阅读次数:
188
call_user_func ( callback $function [, mixed $parameter [, mixed $... ]]
)
调用第一个参数所提供的用户自定义的函数。
返回值:返回调用函数的结果,或FALSE。
example :
Php代码
function eat($fruit) //参数可以为多个
{...
分类:
Web程序 时间:
2014-07-06 09:11:06
阅读次数:
246
action学习笔记2-有关于action method的讨论
Action执行的时候并不一定要执行execute方法,可以在配置文件中配置Action的时候用method=来指定执行哪个方法
也可以在url地址中动态指定(动态方法调用DMI)(推荐)
方法一
//方法一
/user_add_success.j...
分类:
Web程序 时间:
2014-07-06 08:54:22
阅读次数:
213
ambiguous call(有二义性的调用)
一种编译错误,当调用重载函数,找不到唯一的最佳匹配时产生。
arguments(实参)
调用函数时提供的值。这些值用于初始化相应的形参,其方式类似于初始
化同类型变量的方法。
automatic objects(自动对象)
局部于函数的对象。自动对象会在每一次函数调用时重新创建和初始化,并在定义它的函数块结束时撤销。一旦函数执行完毕,...
分类:
编程语言 时间:
2014-07-06 08:20:41
阅读次数:
190
执行启动nginx:/usr/local/nginx/sbin/nginx
错误:/usr/local/nginx/sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
查找:[roo...
分类:
其他好文 时间:
2014-07-06 00:11:52
阅读次数:
205
Description: Given two strings, write a method to decide if one is a permutation of the other.We could use the same idea from CTCI 1.1. The only diffe...
分类:
其他好文 时间:
2014-07-05 21:43:01
阅读次数:
231
struts2上传图片的过程1、写一个上传的jsp页面upload_image.jsp,内容如下: 解析:A、 form里面的method必须是post,enctype="multipart/form-data"上传文件必须这样写 B、这个是图片格式或者大小出...
分类:
其他好文 时间:
2014-07-05 20:59:18
阅读次数:
218