CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - struct

搜索资源列表

  1. shunxu

    0下载:
  2. //顺序表的建立、查找、插入与删除 #include <stdio.h> #include <malloc.h> #include <stdlib.h> #define ListSize 100 //表最大长度 //结构定义 typedef struct SeqList { int node[ListSize] //存放表结点 int length //当前表长度 } SeqList //插入元素
  3. 所属分类:Other systems

    • 发布日期:2017-03-27
    • 文件大小:1211
    • 提供者:珈旖
  1. zhsy

    0下载:
  2. //定义栈的存储结构 typedef struct StackNode { ElemType data //存放数据 struct StackNode * next //指向下一个结点 }StackNode typedef struct { StackNode * top // 栈顶指针 }LinkStack 实现下列操作: void InitStack(LinkStack &S) // 栈的初始化 void
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-22
    • 文件大小:1902
    • 提供者:lixian
  1. tongjigongzi

    0下载:
  2. 1. 统计工资 设计要求: (1) 使用结构数组设计一个公司职员的数据结构,使用下述的结构定义: struct employee{ int age char name[15] double salary } (2) 在主函数里构造一个数组company,用来存放职工信息。 (3) 设计update函数,用来对company中指定职员的信息进行更改。要求先按照name查询到相应的职员,然后修改并保存。 (4) 设计一个read函数,用来向compan
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6458
    • 提供者:龙君
  1. Datastructsaa

    0下载:
  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 //指向后继的指针
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-24
    • 文件大小:2088
    • 提供者:周小强
  1. wenzhouxueyuan

    0下载:
  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 //指向后继的指针
  3. 所属分类:Document

    • 发布日期:2017-03-27
    • 文件大小:34264
    • 提供者:周小强
  1. c2

    0下载:
  2. 1、 有n个学生,每个学生有m门成绩,每个学生的m门成绩用一单链表实现,n个学生所对应n个单链表的头指针用一指针数组统一存放。 1) 建立该存贮结构。 2) 查找第i个学生的某门课成绩。 链表中结点结构: struct node {char *nam;/*nam为课程名*/   float sco;/*sco为该门课程的成绩*/ struct node *link;/*link为指向下一课程结点的指针*/ -1, there are n students, e
  3. 所属分类:assembly language

    • 发布日期:2017-04-03
    • 文件大小:29732
    • 提供者:xie
  1. course

    0下载:
  2. 简单的,利用struct,使用jdbc连接access数据库实现了一个课程管理系统-Simple to use struct, to use jdbc to connect access database to achieve a course management system
  3. 所属分类:Java Develop

    • 发布日期:2017-05-12
    • 文件大小:2907183
    • 提供者:蝶舞
  1. CHead2CSharp-20081124

    0下载:
  2. 将的C++头文件的struct自动转换为C# struct,实现VC和C#的通信数据。-To the C++ The struct header files automatically converted to the C# Struct, the realization of VC and C# Data communications.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-26
    • 文件大小:210776
    • 提供者:陈晓斌
  1. CHead2Delphi

    0下载:
  2. 这是一个自动转换以struct定义为主的c++头文件到pascal文件的小工具。方便实现vc程序和delphi程序的通信。对c头文件的内容和格式有一些限制,力求简单。-This is an automatic conversion to struct definition mainly c++ Header files to pascal paper gadget. Procedures and facilitate the achievement of vc communications de
  3. 所属分类:File Operate

    • 发布日期:2017-04-17
    • 文件大小:12058
    • 提供者:陈晓斌
  1. b_tree16

    0下载:
  2. 综合2叉树及B+树优点的能根据增删改而分裂或合并的完整程序(现在以8bit(BYTE key)为关键字,可扩充到64bit的double为key,用户数据包现在以float ton表示,可扩充到任意结构struct)-Integrated 2-tree and B tree based on the merits of additions and deletions instead of splitting or merging of the integrity of the procedu
  3. 所属分类:Database system

    • 发布日期:2017-03-29
    • 文件大小:2966
    • 提供者:mawenxiao
  1. crc

    0下载:
  2. This GUI is an updated and enhanced version of the “StructBrowser” utility submitted to MatLab Central in May 2003. It comes with new interface and an enhanced display. It uses Microsoft TreeView control to display and explore any kind of MatLab stru
  3. 所属分类:software engineering

    • 发布日期:2017-03-29
    • 文件大小:197894
    • 提供者:jack
  1. struct-gdsl

    0下载:
  2. 书籍上的数据结构源代码,非常有学习价值。-Books on data structure source code, very study has value
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-09
    • 文件大小:1598627
    • 提供者:matthew ma
  1. SyntaxEditor

    0下载:
  2. 自制的语法敏感编辑框控件,采用了多查树索引结构,提高了索引的效率。-This is an DIY syntax richedit ctrl, you can easily use it in dialog , view etc. This ctrl employee a mulitple tree struct to build syntax index and got a good performance
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-28
    • 文件大小:10081
    • 提供者:方勇
  1. crm

    0下载:
  2. JAVA实现的中小型企业CRM客户关系管理系统,为Struct Spring Ibatis架构实现,企业应用或者学习的好系统-JAVA implementation of small and medium-sized enterprise CRM customer relationship management system, Struct Spring Ibatis implementation architecture, enterprise application or a good st
  3. 所属分类:ERP-EIP-OA-Portal

    • 发布日期:2017-05-23
    • 文件大小:7567827
    • 提供者:laisz
  1. StrutsExample

    0下载:
  2. 一个struct程序例子,希望对大家有所帮助。不妨下载看看。- an example about Struct programming
  3. 所属分类:Java Develop

    • 发布日期:2017-05-02
    • 文件大小:1023074
    • 提供者:shaohua
  1. Vmm

    0下载:
  2. 操作系统分析JCINX的内存管理单元V-#ifndef __DEF_VMM_H__ #define __DEF_VMM_H__ //! Magic number to identify a memory block for kernel space. #define MCB_MAGIC *((unsigned long*)"$MCB") //! Magic number to identify a memory block for user mode space. #
  3. 所属分类:OS Develop

    • 发布日期:2017-04-25
    • 文件大小:44068
    • 提供者:洪文亮
  1. structure

    0下载:
  2. 里面涉及了数据结构中的链表、队列和栈的一些知识和算法,希望对朋友们有所帮助。-Involved in the data structure inside the linked list, queue and stack some of the knowledge and algorithms, and they hope to help my friends.
  3. 所属分类:Data structs

    • 发布日期:2017-04-29
    • 文件大小:251872
    • 提供者:刘海涛
  1. nios_fudan

    0下载:
  2. Nios复旦教程,想学习SOPC的,要仔细研究啊,另附加Nios常用函数。-nios sopc nios_function
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-05-16
    • 文件大小:3756316
    • 提供者:涂登乾
  1. 12145652872

    0下载:
  2. struct Link *right struct Link *left int num /*给链表加序号,为了演示时计算正确位置*/ }linkx,*linky void Init(void) /*图形驱动*/ void Close(void) /*图形关闭*/ void InitList(void) /*建立双链表,边建立边插入*/ void PrLink(linky p-ncaa psckaonsco asjmcp
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-27
    • 文件大小:59343
    • 提供者:fwef
  1. yueshefuhuanwenti

    0下载:
  2. 设计求解约瑟夫环问题的出列顺序。具体的要求和说明如下: (1)利用单向循环链表存储结构模拟此过程,按照出列的顺序输出个人的编号。 (2)m的初值为20;n=7,7个人的密码依次为:3,1,7,2,4,8,4,首先m的值为6(正确的出列顺序应为:6,1,4,7,2,3,5)。 (3)程序运行后,首先要求用户指定初始报数的上限值,然后读取个人的密码。可设n<=30,此题所用的循环链表中不需要“头结点”,请注意空表和非空表的界限。 (4)将上述功能改为在顺序结构上实现。-
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1740
    • 提供者:chen
« 1 2 ... 7 8 9 10 11 1213 14 15 16 17 ... 50 »
搜珍网 www.dssz.com