
小作品
字母丶数字丶下划线_
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Linux 通讯录(链表)
通讯录要求: 通讯录说明文档(一) 语言:c语言格式: 编号 姓 名 住址 电话 201701 * xxxx 183****5668要求:使用结构体形式对数据存储功能:使用链表实现增加(在增加人员的过程中有一个自动排序功能,比如按姓名排序)、删除、修改、查找(比如:工号查找、电话查找)的功能;原创 2017-12-25 12:56:13 · 549 阅读 · 0 评论 -
聊天室 1.0 (TCP协议)客户端
/****************************聊天的头文件*************************/ #ifndef HEAD_H_ #define HEAD_H_#include <stdio.h> #include <sqlite3.h> #include <sys/types.h> #include <sys/socket.h> #include <str原创 2017-12-25 13:34:05 · 333 阅读 · 0 评论 -
聊天室 1.0 (TCP协议)服务器
#ifndef HEAD_H_ #define HEAD_H_#include <stdio.h> #include <sqlite3.h> #include <sys/types.h> #include <sys/socket.h> #include <string.h> #include <strings.h> #include <stdlib.h> #include原创 2017-12-25 13:35:28 · 289 阅读 · 0 评论