Let's go!!!!!
发布时间:2014-12-10 22:33:44
//qksort.h#ifndef __QKSORT_H#define __QKSORT_Hint qksort(int *data,int i,int j);#endif//qksort.c#include <stdio.h>#include <malloc.h>#include <stdlib.h>#include <time.h>static int pvalue(int *data,int i,int j){ int r[3]={0}; int temp = 0; srand(.........【阅读全文】
发布时间:2014-12-05 20:33:42
TCP三次握手所谓三次握手(Three-way Handshake),是指建立一个TCP连接时,需要客户端和服务器总共发送3个包。 三次握手的目的是连接服务器指定端口,建立TCP连接,并同步连接双方的序列号和确认号并交换 TCP 窗口大小信息.在socket编程中,客户端执行connect()时。将触发三次握手。 第一.........【阅读全文】
发布时间:2013-09-30 12:42:19
//驱动程序#include <linux/module.h>#include <linux/init.h>#include <linux/irq.h>#include <linux/platform_device.h>#include <mach/regs-gpio.h>#include <mach/hardware.h>#include <mach/gpio.h>#include <asm/irq.h>#include <linux/device.h>#include <linux/poll.h>#include <linux/interrupt.h>#in.........【阅读全文】
发布时间:2013-09-12 09:06:49
assert宏的原型定义在<assert.h>中,其作用是如果它的条件返回错误,则终止程序执行,原型定义:#include <assert.h>void assert( int expression ); assert的作用是现计算表达式 expression ,如果其值为假(即为0),那么它先向stderr打印一条出错信息,然后通过调用 abort 来终止程序运行。请看下面的程序清单ba.........【阅读全文】