搜索结果

找到约 122 项符合 struct 的查询结果

其他 Different methods for generating pyramid data structure have been analysed, thesea fast algorithm of

Different methods for generating pyramid data structure have been analysed, thesea fast algorithm of pyramid data struct is provided.
https://www.eeworm.com/dl/534/288498.html
下载: 139
查看: 1120

Java编程 简单的

简单的,利用struct,使用jdbc连接access数据库实现了一个课程管理系统
https://www.eeworm.com/dl/633/397619.html
下载: 185
查看: 1014

文章/文档 #include <stdio.h> #include <stdlib.h> #define OK 1 #define OVERFLOW -2

#include <stdio.h> #include <stdlib.h> #define OK 1 #define OVERFLOW -2 typedef int status typedef struct LinkList{ //用带表头结点的有序链表表示多项式 float coef //系数 int expn //指数 struct LinkList *next //指向后继的指针 }*polynomail //结构体类型的指针 ...
https://www.eeworm.com/dl/652/392930.html
下载: 76
查看: 1123

企业管理 迷你人事管理系统

迷你人事管理系统,学习Struct入门例子。用eclipse开发的,直接放到导入eclipse中就可以运行
https://www.eeworm.com/dl/632/327702.html
下载: 74
查看: 1033

企业管理 JAVA实现的中小型企业CRM客户关系管理系统

JAVA实现的中小型企业CRM客户关系管理系统,为Struct Spring Ibatis架构实现,企业应用或者学习的好系统
https://www.eeworm.com/dl/632/417393.html
下载: 98
查看: 1118

压缩解压 資料壓縮技術與應用~霍夫曼編碼壓縮及解壓縮(Huffman Coding)~資料結構:霍夫曼樹

資料壓縮技術與應用~霍夫曼編碼壓縮及解壓縮(Huffman Coding)~資料結構:霍夫曼樹,結構struct
https://www.eeworm.com/dl/617/333196.html
下载: 158
查看: 1186

软件设计/软件工程 顺序栈的出栈、入栈、求栈长等基本操作 #include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typed

顺序栈的出栈、入栈、求栈长等基本操作 #include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typedef char DateType typedef struct
https://www.eeworm.com/dl/684/456766.html
下载: 170
查看: 1223

数据结构 经典数据结构中较难的平衡二叉排序树的操作

经典数据结构中较难的平衡二叉排序树的操作,考虑到较多同学都需要,特此上传,c++实现,需要做异质树的自行把struct改为class既可。
https://www.eeworm.com/dl/654/260513.html
下载: 192
查看: 1063

Linux/Unix编程 帧缓冲#include <stdio.h> #include <stdlib.h> #include <string.h> #include <s

帧缓冲#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> #include <unistd.h> #include <fcntl.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <asm/page.h> #include <linux/fb.h> #define TRUE 1 #define FALSE 2 //a framebuffer device structure typed ...
https://www.eeworm.com/dl/619/386216.html
下载: 187
查看: 1129

汇编语言 1、 有n个学生

1、 有n个学生,每个学生有m门成绩,每个学生的m门成绩用一单链表实现,n个学生所对应n个单链表的头指针用一指针数组统一存放。 1) 建立该存贮结构。 2) 查找第i个学生的某门课成绩。 链表中结点结构: struct node {char *nam;/*nam为课程名*/   float sco;/*sco为该门课程的成绩*/ struct node *link;/*link为指向 ...
https://www.eeworm.com/dl/644/396045.html
下载: 27
查看: 1044