发布时间:2015-04-28 16:21:34
操作系统:ubuntu10.04前言: 在稍微大点的项目中,基本都会遇到算法问题,特别是大数据的查找。 在当前项目中,使用到了哈希链表。一,概述......【阅读全文】
发布时间:2015-03-04 22:26:01
/* client.c */#include <sys/types.h>#include <sys/socket.h>#include <sys/ioctl.h>#include <netinet/in.h>#include <netdb.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <unistd.h>#define PORT 4321#define BUFFER_SIZE 1024int main(int argc,char *argv[]){struct.........【阅读全文】