发布时间:2016-09-21 15:33:28
KMP算法简单解析(未优化,旨在揭示原理)点击(此处)折叠或打开void MakeNext(char *p ,int *next){ int len ,i ,k; len = strlen(p);.........【阅读全文】
发布时间:2016-09-06 17:12:59
common.h 为常用的头文件,代码实现了add、show。点击(此处)折叠或打开#include "common.h"typedef struct tree_node TNode;struct tree_node{ int data; struct tree_nod.........【阅读全文】
发布时间:2016-08-30 16:55:14
本代码是在原书的基础上修改的,修改的返回的状态码(200->302)增加了location字段 使之自动跳转。点击(此处)折叠或打开#include <ngx_core.h>#include <ngx_http.h>#include <nginx.h>typedef struct { .........【阅读全文】
发布时间:2016-08-30 13:43:52
主要的配置文件如下user root; #如果nginx没有对应的权限会报段错误location /mytest{ mytest;}点击(此处)折叠或打开#include <ngx_core.h> #include <ngx_http.h>#include <nginx.h>static void *ngx_h.........【阅读全文】