搜索结果

找到约 113 项符合 Struct 的查询结果

Jsp/Servlet 网上书城源码

网上书城源码,采用STRUCT编写,本源码只实现了基本功能
https://www.eeworm.com/dl/696/341736.html
下载: 158
查看: 1034

其他书籍 IEEE 802.16Conformance02-2003 IEEE Standard Conformance to IEEE Std 802.16 Part 2: Test Suite Struct

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
https://www.eeworm.com/dl/542/349058.html
下载: 155
查看: 1064

Java编程 毕业论文

毕业论文,网上书店jsp,struct开发
https://www.eeworm.com/dl/633/355806.html
下载: 51
查看: 1014

数学计算 这是用于线性方程组求解的ILUK预处理算法的实现。在VC++编译通过。矩阵采用压缩稀疏行格式存储(CSR)

这是用于线性方程组求解的ILUK预处理算法的实现。在VC++编译通过。矩阵采用压缩稀疏行格式存储(CSR),采用如下结构存储:struct Distmatrix {double **ma int **ja,dimension,*nnzrow } 很容易移植到自己定义数值计算软件包中。经本人测试计算效率比Fortran写的高很多(比如与Sparskit2比较)。 ...
https://www.eeworm.com/dl/641/379281.html
下载: 45
查看: 1394

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
查看: 1101

其他 //顺序表的建立、查找、插入与删除 #include <stdio.h> #include <malloc.h> #include <stdlib.h> #

//顺序表的建立、查找、插入与删除 #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 ...
https://www.eeworm.com/dl/534/390208.html
下载: 140
查看: 1037

数据结构 1. 统计工资 设计要求: (1) 使用结构数组设计一个公司职员的数据结构

1. 统计工资 设计要求: (1) 使用结构数组设计一个公司职员的数据结构,使用下述的结构定义: struct employee{ int age char name[15] double salary } (2) 在主函数里构造一个数组company,用来存放职工信息。 (3) 设计update函数,用来对company中指定职员的信息进行更改。要求先按照name查询到相应的职员,然 ...
https://www.eeworm.com/dl/654/391339.html
下载: 152
查看: 1138

文章/文档 #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
查看: 1094

汇编语言 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
查看: 1018

Java编程 简单的

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