05 2020 档案

摘要:1.单链表实现 slist.h 1 #ifndef _SLIST_H 2 #define _SLIST_H 3 4 typedef struct _slist_node 5 { 6 struct _slist_node *p_next; /* 指向下一个结点的指针 */ 7 }slist_node_ 阅读全文
posted @ 2020-05-12 09:09 青山依 阅读(319) 评论(0) 推荐(0)
摘要:1. 利用异步io通知模型实现回声服务器端 1 #include <stdio.h> 2 #include <string.h> 3 #include <winsock2.h> 4 5 #define BUF_SIZE 100 6 7 void CompressSockets(SOCKET hSoc 阅读全文
posted @ 2020-05-11 00:21 青山依 阅读(248) 评论(0) 推荐(0)