您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. Molecular Electronics From Principles to Practice

  2. Molecular electronics is an exciting and challenging sphere of activity, enabling the fabrication of a wide range of electronic devices based around organic materials and lowcost technologies. Taken to its limit, molecular electronics also offers un
  3. 所属分类:硬件开发

    • 发布日期:2009-09-13
    • 文件大小:18874368
    • 提供者:daolizhang
  1. fault location on power network

  2. Distribution companies in the UK are under considerable pressure by the regulator OFGEM to improve the reliability of their network and the quality of electricity supply service. These objectives could be achieved by building new substations and cir
  3. 所属分类:其它

    • 发布日期:2010-04-18
    • 文件大小:220160
    • 提供者:woaisichuan521
  1. 城市连接路径最短问题

  2. #define MAXVEX 30 #define MAXCOST 1000 void prim(int c[MAXVEX][MAXVEX],int n) /*己知图的顶点为{1,2,...,n},c[i][j]和c[j][i]为边(i,j)的权,打印最小生成树 的每条边*/ { int i,j,k,min,lowcost[MAXVEX],closest[MAXVEX];; for (i=2;i<=n;i++) /*从顶点1开始*/ { lowcost[i]=c[1][i]; close
  3. 所属分类:C

    • 发布日期:2010-06-20
    • 文件大小:3072
    • 提供者:lemonbin
  1. 最小生成树最小生成树

  2. 1. 掌握最优子结构性质的证明方法2. 掌握贪心法的设计思想并能熟练运用二. 实验内容用prim算法实验最小生成树三. 算法思想1. 初始化两个辅助数组lowcost和adjvex;2. U={u0};输出顶点u0; //将顶点u0加入生成树中3. 重复执行下列操作n-1次;在lowcost中选取最短边,取adjvex中对应的顶点序号k;输出顶点k和对应的权值;U=U+{k};调整数组lowcost和adjvex;
  3. 所属分类:其它

    • 发布日期:2008-03-01
    • 文件大小:69632
    • 提供者:creazy2008
  1. C_C++语言经典算法

  2. 图的最小生成树 文章整理: www.diybl.com 文章来源: 网络 去论坛 建我的blog #include #include #include #include #define ING 9999 int visited[10];/*访问标志数组*/ typedef struct ArcCell{ int adj;/*顶点关系类型,用1表示相邻,0表示不相邻*/ }ArcCell,**AdjMatrix;/*邻接矩阵*/ typedef struct type{ char data[3]
  3. 所属分类:C++

    • 发布日期:2010-10-25
    • 文件大小:959488
    • 提供者:liulingfengcn
  1. Prim法则(运行100成功)

  2. PrimMinSpanTree(mgraph g,int k) { int i,j,min,p; struct { int adjvex; int lowcost; }closedge[MAX_VERTEX_NUM]; for(j=1;j<=g.vexnum;j++) if(j!=k) { closedge[j].adjvex=k; closedge[j].lowcost=g.arcs[k][j]; } closedge[k].lowcost=0; for(i=1;i<g.vexn
  3. 所属分类:C/C++

    • 发布日期:2011-06-14
    • 文件大小:990
    • 提供者:djqtdj
  1. 用vc实现的最小生成树

  2. 用vc实现的最小生成树 #include typedef struct closedge { int adjvex; int lowcost; }array[20]; void main() { int c,vexnum,i,j,m,n,k=1; array closedge[20]; int group[20][20]; printf("请输入结点个数:\n"); scanf("%d",&vexnum;); for(i=1;i<=vexnum;i++) for(j=1;j<=ve
  3. 所属分类:C/C++

    • 发布日期:2012-03-06
    • 文件大小:1024
    • 提供者:zengshaof
  1. 最小生成树

  2. //----------记录从顶点集U到V-U的代价最小的边的辅助数组定义--------- typedef struct { VertexType adjvex; VRType lowcost; }minside[MAX_VERTEX_NUM];
  3. 所属分类:C/C++

    • 发布日期:2014-12-17
    • 文件大小:3072
    • 提供者:wjl648481835
  1. C/C++经典算法大全

  2. #include #include #include #include #define ING 9999 int visited[10];/*访问标志数组*/ typedef struct ArcCell{ int adj;/*顶点关系类型,用1表示相邻,0表示不相邻*/ }ArcCell,**AdjMatrix;/*邻接矩阵*/ typedef struct type{ char data[3];/*顶点值*/ }VertexType; typedef struct{ VertexType
  3. 所属分类:其它

    • 发布日期:2009-03-23
    • 文件大小:1048576
    • 提供者:ywc_love
  1. c C++算法大全详解(付代码)

  2. 算法大全(C,C++) 一、 数论算法 1.求两数的最大公约数 function gcd(a,b:integer):integer; begin if b=0 then gcd:=a else gcd:=gcd (b,a mod b); end ; 2.求两数的最小公倍数 function lcm(a,b:integer):integer; begin if a0 do inc(lcm,a); end; 3.素数的求法 A.小范围内判断一个数是否为质数: function prime (n:
  3. 所属分类:其它

    • 发布日期:2009-04-01
    • 文件大小:15360
    • 提供者:zengzangen
  1. Prim算法.cpp

  2. 寻找最小生成树的prim算法。先定义两个一维数组,数组lowcost[i]存放以i为顶点的边的最小权值,adjvex[i]存放对应的顶点i。 假设我们选择从顶点0开始,先初始化两个数组,数组lowcost为邻接矩阵第0行的值,数组adjvex=0 ,以此类推。
  3. 所属分类:C/C++

    • 发布日期:2019-05-15
    • 文件大小:1024
    • 提供者:qq_40417633
  1. 纯C语言:贪心Prim算法生成树问题源码分享

  2. 代码如下:#include #define MAX 100#define MAXCOST 100000int graph[MAX][MAX];int Prim(int graph[MAX][MAX], int n){ /* lowcost[i]记录以i为终点的边的最小权值,当lowcost[i]=0时表示终点i加入生成树 */ int lowcost[MAX]; /* mst[i]记录对应lowcost[i]的起点 */ int mst[MAX]; int i, j, min, minid, s
  3. 所属分类:其它

    • 发布日期:2021-01-01
    • 文件大小:43008
    • 提供者:weixin_38696143
  1. 使用C语言实现最小生成树求解的简单方法

  2. 最小生成树Prim算法朴素版 有几点需要说明一下。 1、2个for循环都是从2开始的,因为一般我们默认开始就把第一个节点加入生成树,因此之后不需要再次寻找它。 2、lowcost[i]记录的是以节点i为终点的最小边权值。初始化时因为默认把第一个节点加入生成树,因此lowcost[i] = graph[1][i],即最小边权值就是各节点到1号节点的边权值。 3、mst[i]记录的是lowcost[i]对应的起点,这样有起点,有终点,即可唯一确定一条边了。初始化时mst[i] = 1,即每条边都是
  3. 所属分类:其它

    • 发布日期:2020-12-31
    • 文件大小:95232
    • 提供者:weixin_38719564
  1. Low cost, practical, all-digital open-loop fiber-optic gyroscope

  2. A novel all-digital scheme for open-loop fiber-optic gyroscope (FOG), where only two key points of output wave were digitized directly, has been proposed. A control equation, with which the modulation depth of PZT modulator is stable when setting the
  3. 所属分类:其它

    • 发布日期:2021-02-11
    • 文件大小:427008
    • 提供者:weixin_38597300
  1. Low Cost, High Efficiency, Gain Flattened L Band EDFA Using FBGs as C Band Seed Generators

  2. A low cost, coolerless 980nm diode pumped, gain flattened L band EDFA with fast transient control, high pump efficiency and gain clamping effect was realized by using FBGs as C band seed generators.
  3. 所属分类:其它

    • 发布日期:2021-02-08
    • 文件大小:949248
    • 提供者:weixin_38690402
  1. High Channel Count, Low Cost, Multiplexed FBG Sensor Systems

  2. With rich products development experience in WDM telecommunication networks, we introduce a few of high channel count, multiplexed FBG fiber optic sensor systems featured in reliable high performance and low cost.
  3. 所属分类:其它

    • 发布日期:2021-02-08
    • 文件大小:897024
    • 提供者:weixin_38725902
  1. 架构设计之性能设计经验

  2. 性能(performance)设计非常重要,对于服务器端实时交易系统来说系统性能的重要性不言而喻,对客户端软件来说性能好的软件也会获得良好的用户体验,从而给用户留下高质量软件的良好印象。因此在进行架构设计中性能设计非常重要。 但架构设计实际是一个平衡设计,在可用性、可扩展性、可维护性、可靠性、高性能等之间做个妥协选择。这些非功能性的需求再加上复杂的功能性需求,同时还要考虑到项目管理上tight schedule,lowcost,perfecteffect的三角难题约束,有时需求还
  3. 所属分类:其它

    • 发布日期:2021-01-31
    • 文件大小:98304
    • 提供者:weixin_38592332