下面所讲的是在Linux系统上用gcc编写的,Windows好像不能用。 socket是套接字,是用来在网络之间进行数据传递的。 在网络中,我们通过一个IP来确定一台主机,再通过一个port来确定一个进行,而socket就是一个进行。因此:socket = IP + port 网络传输的2种模式 C ...
分类:
编程语言 时间:
2018-12-01 23:32:29
阅读次数:
277
、打开cygwin,进入home目录,home目录在WINDOWS系统的cygwin安装目录映射为home目录。2、首先,在home目录中新建文件夹,在文件夹中放置如下内容的test1.l/*统计字数*/%{intchars=0;intwords=0;intlines=0;%}%%[a-zA-Z]+{words++;chars+=strlen(yytext);}\n{chars++;lines++
分类:
其他好文 时间:
2018-12-01 00:14:20
阅读次数:
241
//判断关联到的字符串是否为空 if (strlen(lr_eval_string("{param}")) == 0); //判断关联的字符串是否跟期望的值相同 if(strcmp(lr_eval_string("{param}"), "expected") == 0); //判断关联的字符数组co... ...
分类:
其他好文 时间:
2018-11-30 13:57:10
阅读次数:
147
所有C++标准库的头文件都是没有.h结尾的。这么做是为了区分,C标准库的头文件和C++标准库的头文件。比如最具代表性的: 此外对于所有C标准库头文件,如果你是在C++项目中引用,你应该使用 include 这种方式而不是 include 这种形式。也就是说我们应该使用 include 而不是 inc ...
分类:
其他好文 时间:
2018-11-29 23:13:18
阅读次数:
282
title: u boot(五)内核启动 tags: linux date: 2018 09 26 19:58:05 u boot(五)内核启动 [TOC] 概述 启动命令: ,具体代码实现的重点是以下: 1. 获取环境变量 2. 启动内核,这个s= 3. 就是先读出内核,再启动内核了 备注 jff ...
分类:
其他好文 时间:
2018-11-27 01:42:12
阅读次数:
295
title: kernel(二)源码浅析 tags: linux date: 2018 11 08 18:02:34 kernel(二)源码浅析 [TOC] 建立工程 1. 移除所有Arch,添加Arch/arm 下除了 Mach_xxx 开头的,Mach_xxx 表示机器型号,添加2410,244 ...
分类:
其他好文 时间:
2018-11-27 01:13:20
阅读次数:
200
AC自动机 queueq; struct Aho_Corasick_Automaton{ int c[N][26],val[N],fail[N],cnt; void ins(char s){ int len=strlen(s);int now=0; for(int i=0;i ...
分类:
其他好文 时间:
2018-11-26 20:13:32
阅读次数:
157
一、字符串转整数 以“123456”为例 完善后: 二、回文判断 从两边向中间 从中间到两边 ...
分类:
其他好文 时间:
2018-11-25 22:16:27
阅读次数:
203
int LCS(char *a,char *b) { if(a==NULL || b==NULL) return 0; int len_a = strlen(a); int len_b = strlen(b); int f[M][N]; for(int i=1;i f[i-1][j] ? f[i][... ...
分类:
其他好文 时间:
2018-11-24 20:59:05
阅读次数:
144
void AllSortCore(char *str,int begin,int end); void AllSort(char *str) { if(str == NULL) return ; int n = strlen(str); AllSortCore(str,0,n-1); } void ... ...
分类:
其他好文 时间:
2018-11-24 20:53:23
阅读次数:
171