CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 文档资料 软件工程 搜索资源 - struct

搜索资源列表

  1. tradeForm Struct

    0下载:
  2. 1erterwe1热望 热望·-1erterwe1 aspire aspire
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:3816
    • 提供者:tsf
  1. SCADA

    0下载:
  2. This text surrounds the development of the electric power SCADA system exactly, aiming at the present condition of the our country electric power charged barbed wire net currently, according to the oneself at the e- lectric power protect the professi
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:434867
    • 提供者:Jawen
  1. Wrox.Beginning.Algorithms.Nov.2005.eBook-LinG

    0下载:
  2. Developers use algorithms and data structures every day of their working lives. Having a good under-standing of these algorithms and knowledge of when to apply them is essential to producing softwarethat not only works correctly, but also performs ef
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:3733201
    • 提供者:lorainve
  1. xianxingbiao

    0下载:
  2. 实习题 [问题描述] 1. 设顺序表中的数据元素递增有序,将插入到顺序表的适当位置上,是该表仍然有序。 [输入] 初始顺序表,插入字符。 [输出] 插入x后线性表的结果 [存储结构] 采用顺序存储结构 [算法的基本思想] 建立一个递增顺序表,插入一个数值并移动元素,使其仍然有序。 程序如下: #include \"iostream.h\" #include <malloc.h> #define LIST_INTI_SIZE 1
  3. 所属分类:软件工程

    • 发布日期:2014-01-15
    • 文件大小:8550
    • 提供者:Demonic
  1. duijian

    0下载:
  2. 堆栈的数据结构和操作 ypedef struct{ HGLOBAL hMem //堆栈全局内存句柄 POINT *lpMyStack //指向该句柄的指针 LONG ElementsNum //堆栈的大小 LONG ptr //指向栈顶得指针
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:2430
    • 提供者:anwei
  1. design

    0下载:
  2. struct\ejb\mysql工程设计文档-struct\ejb\mysql design doc
  3. 所属分类:software engineering

    • 发布日期:2017-05-06
    • 文件大小:1079958
    • 提供者:yuhui
  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. sunxuzhan

    0下载:
  2. 顺序栈的出栈、入栈、求栈长等基本操作 #include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typedef char DateType typedef struct-#include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typedef char DateType typedef
  3. 所属分类:software engineering

    • 发布日期:2017-04-12
    • 文件大小:924
    • 提供者:陈志峰
  1. a

    0下载:
  2. 有双向循环链表结点定义为: struct node { int data struct node *front,*next } 有两个双向循环链表A,B,知道其头指针为:pHeadA,pHeadB,请写一函数将两链表中data值相同的结点删除,并测试。-Two-way linked list node cycle defined as: struct node (int data struct node* front,* next ) there are two t
  3. 所属分类:software engineering

    • 发布日期:2017-03-26
    • 文件大小:967
    • 提供者:杜若
  1. 915697913

    0下载:
  2. 数据结构习题集,有详细答案和相关说明,源码及解题步骤.-This struct is very good
  3. 所属分类:software engineering

    • 发布日期:2017-04-25
    • 文件大小:13969
    • 提供者:wy
  1. copyconstructors

    0下载:
  2. A copy constructor is a special constructor for a class/struct that is used to make a copy of an existing instance.
  3. 所属分类:software engineering

    • 发布日期:2017-04-05
    • 文件大小:23202
    • 提供者:Gulsen Ulutas
  1. Double-Linked-List-1

    0下载:
  2. ebook about struct with c
  3. 所属分类:software engineering

    • 发布日期:2017-04-17
    • 文件大小:257985
    • 提供者:altraz
  1. asoftware-struct

    0下载:
  2. 软件体系结构文档描述,基于软件工程的详细描述-software struct
  3. 所属分类:software engineering

    • 发布日期:2017-04-02
    • 文件大小:134259
    • 提供者:可乐
  1. software-struct-test

    0下载:
  2. 对软件测试中的结构性测试进行了详细描述,PPT课件,方便初学者学习。-Structural testing of software testing is described in detail , PPT courseware , easy for beginners to learn .
  3. 所属分类:software engineering

    • 发布日期:2017-04-01
    • 文件大小:728440
    • 提供者:桂爱刚
  1. data-struct

    0下载:
  2. 北京理工大学网络教室的数据结构练习题的详解答案-data struct
  3. 所属分类:software engineering

    • 发布日期:2017-11-04
    • 文件大小:132274
    • 提供者:张伟
  1. BigNumber

    0下载:
  2. 大数处理 struct _bigNum { int bigNum[N] int weishu //上面那个数组中 前多少个是有效的 } 说明:对于大数bigNum,我们把它分成N份,每份4位。这样的话,每份就可以当做一个整型存到数组里了。 -BIG NUMBER
  3. 所属分类:software engineering

    • 发布日期:2017-11-06
    • 文件大小:109909
    • 提供者:李予昂
  1. database-struct

    0下载:
  2. 数据结构 经典算法 猴子选王 文章编辑 等-database struct classic alogrithm
  3. 所属分类:Project Design

    • 发布日期:2017-11-14
    • 文件大小:783701
    • 提供者:孙慧慧
  1. memalign

    0下载:
  2. C语言结构体对齐也是老生常谈的话题了。基本上是面试题的必考题。内容虽然很基础,但一不小心就会弄错。写出一个struct,然后sizeof,你会不会经常对结果感到奇怪?sizeof的结果往往都比你声明的变量总长度要大,这是怎么回事呢?-C language structure alignment is also commonplace topic. Is basically a must face questions exam. Although the content is very basic
  3. 所属分类:software engineering

    • 发布日期:2017-04-14
    • 文件大小:2909
    • 提供者:xj
  1. struts2.1

    0下载:
  2. struct框架学习,这个网站很有发展潜力-struct learning framework,This site has great development potential
  3. 所属分类:Software Testing

    • 发布日期:2017-03-27
    • 文件大小:11687
    • 提供者:mr liu
  1. CPP-struct-and-clsss-code

    0下载:
  2. 本程序用简单的方法说明了类和结构的区别,对于初学C++的有帮助-this code implies the difference between the struct and the class
  3. 所属分类:Software Testing

    • 发布日期:2017-04-30
    • 文件大小:10399
    • 提供者:111111
« 12 »
搜珍网 www.dssz.com