纯c语言的向量vector实现,实现c++中vector的一些基本的特性和操作,适用于一些只支持c语言的平台上使用vector数据结构,包含测试用例以及函数的使用范例
2022-02-24 14:15:53 7KB C语言 vector 向量
1
1、udt c语言实现,支持跨平台; 2、优势:适用于嵌入式设备,编译库比较小; 3、udt网络传输协议开源包,是基于UDP的可靠传输协议; 4、linux平台下具体适用方式如下: make # compile make clean # cleanup export LD_LIBRARY_PATH=./src/:$LD_LIBRARY_PATH # export the library path progs/server # start the server progs/client # start the client progs/sendfile # start the sendfile server progs/recvfile "file/to/get" "file/to/saveas" # receive the file
2022-02-21 09:15:48 16KB c语言 开发语言 后端
1
快学Spark 2.0(新特性、含真实项目、纯Scala语言开发、CDH5.7).zip
2022-01-17 09:02:34 119KB 学习资源
1
参照b2b160 大哥源代码,使用纯C语言编写的坦克大战游戏, 欢迎访问我的博客: http://blog.csdn.net/openthe721/category/805668.aspx
2022-01-12 14:22:32 2KB 坦克大战 C语言
1
纯c语言编写飞机大战小游戏,源码开放,可以运行,适合c语言小白级小项目,可以锻炼编程思维,C语言项目实例。
2022-01-11 16:38:52 19KB c语言项目
1
C语言开发的学生信息录入、更改、追加、删除等操作的小程序,包含源代码和可执行文件,代码可读性较好
2021-12-25 11:49:13 14KB 学生 代码 C语言
1
纯C语言学生成绩管理系统(以包含文件的形式写的),结构体,链表,数组,以下是main.c #include #include #include #define m 3/*宏定义m的值为3*/ struct node/*链表初始化*/ { char name[20]; int no; float score[m]; float sum; float avg; struct node *next; }; char ch[m+4][20]={{"学号"},{"姓名"},{"语文"},{"数学"},{"英语"},{"总分"},{"平均分"}};/*定义并初始化一个全局二维字符数组*/ #include "save.c"/*包含保存文件*/ #include "read.c"/*包含读取文件*/ #include "output.c"/*包含打印文件*/ #include "set.c"/*包含录入文件*/ #include "demand.c"/*包含查询文件*/ #include "sort.c"/*包含排序文件*/ #include "modified.c"/*包含修改文件*/ #include "add.c"/*包含添加文件*/ #include "del.c"/*包含删除文件*/ void main() { int n; printf("\n\t\t\t欢迎使用学生成绩管理系统\n\n"); printf("\t\t\t\t\t\t制 作: XIA XIA\n"); do { printf("\n\n1:学生成绩录入,并保存\n"); printf("2:学生成绩查询\n"); printf("3:学生成绩的排序\n"); printf("4:学生成绩的修改\n"); printf("5:学生成绩的打印\n"); printf("6:学生信息的添加\n"); printf("7:学生信息的删除\n"); printf("0:退出学生成绩管理系统\n\n\n"); printf("输入你要执行操作的相应序号\n"); scanf("%d",&n);/*输入相就的操作的序号*/ switch (n) { case 1: set();break;/*调用录入函数*/ case 2: demand();break;/*调用查询函数*/ case 3: sort();break;/*调用排序函数*/ case 4: modified();break;/*调用修改函数*/ case 5: output();break;/*调用打印函数*/ case 6: add();break;/*调用添加函数*/ case 7: del();break;/*调用删除函数*/ case 0: printf("正在退出学生成绩管理系统......\n");exit(0);/*直到输入“0”退出学生成绩管理系统*/ default:printf("输入错误码,请重新输入\n"); } }while(1); }
2021-12-21 22:04:24 210KB C语言 成绩管理系统
1
使用C语言开发的学生课程信息管理系统,无 图形化界面
2021-12-21 18:01:02 12KB c语言
1
深度学习神经网络纯C语言基础版
2021-12-16 21:52:04 128KB BP C语言
1
基兹 纯C语言的游戏引擎 这只是我个人学习更好的C项目 特征 2d OpenGL渲染器 音响系统 动态运行时系统的自定义实体系统(空间实体系统?) 瓷砖地图系统 AI *寻路?
2021-12-06 21:07:46 445KB c opengl game-engine C
1