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

搜索资源列表

  1. t822

    0下载:
  2. 函数int SingleTrackE(int i, int j, int iop, int *code) 实现单区域轮廓跟踪 函数int CodeToTable(int *code,struct DOT *dot)实现链码表转换成线段表 -function int SingleTrackE (int i, int j, iop int, int * code) to achieve single contour tracking function int CodeToTable (int *
  3. 所属分类:GDI/图象编程

    • 发布日期:2008-10-13
    • 文件大小:2507
    • 提供者:朱云
  1. tubianli

    1下载:
  2. 图的遍历的演示(c 语言 数据结构课程设计题) /*定义图*/ typedef struct{ int V[M] int R[M][M] int vexnum }Graph /*创建图*/ void creatgraph(Graph *g,int n) { int i,j,r1,r2 g->vexnum=n /*顶点用i表示*/ for(i=1 i<=n i++) { g->V[i]=
  3. 所属分类:系统编程

    • 发布日期:2014-01-15
    • 文件大小:1405
    • 提供者:吉庆
  1. ch10

    0下载:
  2. 数据结构(严慰敏)配套纯c代码实验十 typedef int InfoType // 定义其它数据项的类型 typedef int KeyType // 定义RedType类型的关键字为整型 struct RedType // 记录类型(同c10-1.h) { KeyType key // 关键字项 InfoType otherinfo // 其它数据项 } typedef char KeysType // 定义关键字类型为字符型 #incl
  3. 所属分类:其它

    • 发布日期:2014-01-17
    • 文件大小:13016
    • 提供者:冰河
  1. wuziqi

    0下载:
  2. 五子棋小游戏#include<stdlib.h> #include<time.h> #include<stdio.h> #include<conio.h> int chess[169]={0} /*棋盘*/ struct chess_t/*作为辅助,即是作为建意*/ { char attack /*攻防用的,0表示守,1表示攻*/ int j /*作为优先级用*/ }chess_a[169]
  3. 所属分类:游戏

    • 发布日期:2008-10-13
    • 文件大小:2382
    • 提供者:庄斌
  1. moneymanagementsystem

    0下载:
  2. 家 庭 财 务 管 理 小 程 序 程序源代码: /*money management system*/ #include \"stdio.h\" #include \"dos.h\" main() { FILE *fp struct date d float sum,chm=0.0 int len,i,j=0 int c
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1498
    • 提供者:earl86
  1. et-mvc-1.0-beta1-src.rar

    0下载:
  2. extjs MVC struct 开发框架,快速开发应用,development framework extjs MVC struct
  3. 所属分类:Java Develop

    • 发布日期:2017-03-23
    • 文件大小:158696
    • 提供者:chen
  1. SSH2Demo

    0下载:
  2. spring struct2 hibernate 整合的一个例子,有完整jar包-spring struct2 hibernate demo
  3. 所属分类:Java Develop

    • 发布日期:2017-06-11
    • 文件大小:18991303
    • 提供者:prl
  1. normaldistribution

    0下载:
  2. #include <stdlib.h> #include <stdio.h> #include <time.h> #include <fstream> #include <iostream> using namespace std struct Code { float a char s } Code cc[8]={{0.25, a },{0.3,
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-21
    • 文件大小:809
    • 提供者:糊涂
  1. 01259361tubianlideyanshi

    0下载:
  2. 图的遍历的演示(c 语言 数据结构课程设计题) /*定义图*/ typedef struct{ int V[M] int R[M][M] int vexnum }Graph /*创建图*/ void creatgraph(Graph *g,int n) { int i,j,r1,r2 g->vexnum=n /*顶点用i表示*/ for(i=1 i<=n i++) { g->V[i]=i } /*初始化R*/ for(i=1 i<=n i++) for(j=1 j<
  3. 所属分类:Document

    • 发布日期:2017-04-03
    • 文件大小:60160
    • 提供者:唐钊
  1. shizilianbiao

    0下载:
  2. typedef struct OLNode { int i,j ElemType e struct OLNode *right,*down } OLNode, *OLink typedef struct { OLink *rhead,*chead int mu,nu,tu } CrossList 十字链表法,求解稀疏矩阵运算,程序容易看懂。不过没有乘法-typedef struct OLNode { int i,j E
  3. 所属分类:Algorithm

    • 发布日期:2017-03-26
    • 文件大小:6950
    • 提供者:zzc
  1. NStepSCAN

    0下载:
  2. NStepSCAN N步磁盘扫描调度算法C++程序-#include "stdafx.h" #include "stdlib.h" int L,P int a[20] int flag //访问位 typedef struct TASK { int requrie int io } TASK TASK T[50][50] TASK N[50] int diskway //当前磁道 void iod
  3. 所属分类:Disk Tools

    • 发布日期:2016-01-26
    • 文件大小:1024
    • 提供者:吴英杰
  1. choose

    0下载:
  2. 用c++编写的选票系统,并可统计相关得票情况-#include <iostream> using namespace std struct Person//声明结构体类型Person; { char name[20] int count } int main() { Person leader[3]={"aaa",0,"bbb",0,"ccc",0} //定义Person类型的数组,内容为当前候选人的姓名及得票数;
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:854274
    • 提供者:盛雯雯
  1. Doubly-linked-.

    0下载:
  2. 线性表链式存储(双向链表)插入、删除运算 1、预习要求:线性表的插入、删除相关概念及运算,完成线性表元素的插入、删除。 2、实验目的: (1)了解线性表的插入、删除相关概念; (2)理解线性表的插入、删除过程和结构定义; (3)掌握算法转换为程序的过程中的变化。 3、实验内容及要求: (1) 以“一个较完整的程序范例-顺序表”程序框架为框架 (2)双链表结构体为: typedef struct { int num /学号 char
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:325252
    • 提供者:the spring
  1. 10102130203

    0下载:
  2. 与矩阵连乘最小乘法数问题类似,虽然不需要记录加括号的方式,但是需要纪录下从i乘到j的结果中为a、b、c的个数,以便在后续的计算中可以用到之前的数据,避免重复计算。所以就需要用三维数组来存储(当然用struct结构体数据类型也很方便)或者用两个数组。-With a matrix with minimal multiplication problem similar, although need not record bracketed style, but need to record from
  3. 所属分类:Algorithm

    • 发布日期:2017-04-16
    • 文件大小:296402
    • 提供者:张小迪
  1. cPPcode

    0下载:
  2. C++编程思想源码 //: 2_1.CPP -- Public is just like C struct #include "2_1.h" struct A{ int i char j float f void foo() } void A::foo(){} struct B{ public: int i char j float f void foo() } void B::
  3. 所属分类:source in ebook

    • 发布日期:2017-04-09
    • 文件大小:6652
    • 提供者:jeff
  1. eluosifangkuai

    0下载:
  2. 俄罗斯方块 。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。 #include <iostream> #include <stdlib.h> #include <windows.h> #include <time.h> #include <conio.h> using namespace std #define A1 0//A代表长条型,B为方块,C为L型,D为
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-24
    • 文件大小:275344
    • 提供者:天河
  1. wuziqi101

    0下载:
  2. 五子棋小游戏#include< stdlib.h> #include< time.h> #include< stdio.h> #include< conio.h> int chess[169]={0} /*棋盘*/struct chess_t/*作为辅助,即是作为建意*/{ char attack /*攻防用的,0表示守,1表示攻*/ int j /*作为优先级用*/}chess_a[169] -Gobang game# Include
  3. 所属分类:Embeded Linux

    • 发布日期:2017-04-13
    • 文件大小:2431
    • 提供者:ssrktinfr
搜珍网 www.dssz.com