• 大小: 3.1MB
    文件类型: .tar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-28
  • 语言: 其他
  • 标签:

资源简介

采用C/S架构,主函数在template\localChat下,客户端client.c和服务端server.c。 template下Makefile进行的是lib和intro目录文件的编译,先在该目录make之后,再到localChat目录下make编译生成可执行文件server和client。 主要知识点:socket套接字、链表用户管理、线程创建管理、IO复用、select监听套接字、文件读写等。

资源截图

代码片段和文件信息

/*************************************************************************
> File Name: bullesort.c
> Author: mrhjlong
> Mail: mrhjlong@163.com 
> Created Time: 2016年07月13日 星期三 15时23分02秒
 ************************************************************************/

#include
#include “bubblesort.h“
void bubblesort(int *s int len)
{
int i = 0;
int j = 0;
int temp = 0;

for(i = 0; i < len; i++)
{
for(j = 0; j < len - i - 1; j++)
{
if(s[j] > s[j + 1])
{
temp = s[j];
s[j] = s[j + 1];
s[j + 1] = temp;
}
}
}
}

评论

共有 条评论