网上书城源码,采用strUCt编写,本源码只实现了基本功能
标签: 源码
上传时间: 2013-12-17
上传用户:zyt
IEEE 802.16Conformance02-2003 IEEE Standard Conformance to IEEE Std 802.16 Part 2: Test Suite strUCture and Test Purposes for 10-66 GHz WirelessMAN-SC Air Interface
标签: Conformance IEEE 802.16 Standard
上传时间: 2016-10-02
上传用户:zhenyushaw
毕业论文,网上书店jsp,strUCt开发
标签: 毕业论文
上传时间: 2014-01-08
上传用户:franktu
这是用于线性方程组求解的ILUK预处理算法的实现。在VC++编译通过。矩阵采用压缩稀疏行格式存储(CSR),采用如下结构存储:strUCt Distmatrix {double **ma int **ja,dimension,*nnzrow } 很容易移植到自己定义数值计算软件包中。经本人测试计算效率比Fortran写的高很多(比如与Sparskit2比较)。
上传时间: 2016-12-15
上传用户:奇奇奔奔
帧缓冲#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 typedef strUCt fbdev{ int fb unsigned long fb_mem_offset unsigned long fb_mem strUCt fb_fix_screeninfo fb_fix
上传时间: 2013-12-11
上传用户:bjgaofei
//顺序表的建立、查找、插入与删除 #include <stdio.h> #include <malloc.h> #include <stdlib.h> #define ListSize 100 //表最大长度 //结构定义 typedef strUCt SeqList { int node[ListSize] //存放表结点 int length //当前表长度 } SeqList //插入元素 insertList(SeqList *list, int e) { int i=list->length-1 //先将i指定为最后一项 if(i>=ListSize-1) //表已经达到最大长度ListSize { printf("表已满,不能增加新的项!\n")
上传时间: 2014-01-17
上传用户:dongqiangqiang
1. 统计工资 设计要求: (1) 使用结构数组设计一个公司职员的数据结构,使用下述的结构定义: strUCt employee{ int age char name[15] double salary } (2) 在主函数里构造一个数组company,用来存放职工信息。 (3) 设计update函数,用来对company中指定职员的信息进行更改。要求先按照name查询到相应的职员,然后修改并保存。 (4) 设计一个read函数,用来向company中录入职员信息,并显示结果。 (5) 编写mean函数求平均工资。 应该能对全体职工或大于某一年龄的职工工资求和并计算平均值。 (6) 编写total函数对工资求和。 应该能对全体职工或某一年龄段职工的工资求和。
上传时间: 2014-01-23
上传用户:colinal
#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 //结构体类型的指针
标签: include define OVERFLOW stdlib
上传时间: 2014-12-06
上传用户:1079836864
1、 有n个学生,每个学生有m门成绩,每个学生的m门成绩用一单链表实现,n个学生所对应n个单链表的头指针用一指针数组统一存放。 1) 建立该存贮结构。 2) 查找第i个学生的某门课成绩。 链表中结点结构: strUCt node {char *nam;/*nam为课程名*/ float sco;/*sco为该门课程的成绩*/ strUCt node *link;/*link为指向下一课程结点的指针*/
标签:
上传时间: 2013-12-14
上传用户:TF2015
简单的,利用strUCt,使用jdbc连接access数据库实现了一个课程管理系统
标签:
上传时间: 2013-12-22
上传用户:gaojiao1999