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

搜索资源列表

  1. 16天记住7000考研单词

  2. 16天记住7000考研单词(第一天) 1. With my own ears I clearly heard the heart beat of the nuclear bomb. 我亲耳清楚地听到原子弹的心脏的跳动。 2. Next year the bearded bear will bear a dear baby in the rear. 明年,长胡子的熊将在后方产一头可爱的小崽. 3. Early I searched through the earth for earthware
  3. 所属分类:专业指导

    • 发布日期:2009-05-09
    • 文件大小:195584
    • 提供者:huachuanyilang
  1. 深度优先和广度优先(有源程序)

  2. 程序能直接运行,绝对正品程序源代码。 #include #include #include #include int visited[10];/*访问标志数组*/ typedef struct ArcCell{ int adj;/*顶点关系类型,用1表示相邻,0表示不相邻*/ }ArcCell,**AdjMatrix;/*邻接矩阵*/ typedef struct type{ char da ta[3];/*顶点值*/ struct type *next;/*顶点的下一个指针*/ }Verte
  3. 所属分类:其它

    • 发布日期:2009-05-30
    • 文件大小:2048
    • 提供者:lvyinde
  1. 40天背8000个单词

  2. 40天背8000个单词DOC版,如: 1. With my own ears I clearly heard the heart beat of the nuclear bomb. 我亲耳清楚地听到原子弹的心脏的跳动。 2. Next year the bearded bear will bear a dear baby in the rear. 明年,长胡子的熊将在后方产一头可爱的小崽.
  3. 所属分类:专业指导

    • 发布日期:2009-06-03
    • 文件大小:277504
    • 提供者:zzj0388
  1. 784句突破7000考研单词.

  2. With my own ears I clearly heard the heart beat of the nuclear bomb. 我亲耳清楚地听到原子弹的心脏的跳动。 2. Next year the bearded bear will bear a dear baby in the rear. 明年,长胡子的熊将在后方产一头可爱的小崽. 3. Early I searched through the earth for earthware so as to research in e
  3. 所属分类:专业指导

    • 发布日期:2009-06-14
    • 文件大小:901120
    • 提供者:baidehuayyy
  1. Digital Audio Compression Standard (AC-3, E-AC-3) Revision B

  2. Dolby Digital, or AC-3, is the common version containing up to six discrete channels of sound. The most elaborate mode in common usage involves five channels for normal-range speakers (20 Hz – 20,000 Hz) (right front, center, left front, right rear
  3. 所属分类:其它

    • 发布日期:2009-06-30
    • 文件大小:2097152
    • 提供者:enjoyoung
  1. 航空订票系统课程设计

  2. 航空订票系统课程设计详细文档及源程序 #include #include #include #include #define MAXSIZE 3 /*定义航线量的最大值*/ typedef struct wat_ros { char name[10];/*姓名*/ int req_amt;/*订票量*/ struct wat_ros *next; }qnode,*qptr; typedef struct pqueue { qptr front;/*等候替补客户名单域的头指针*/ qpt
  3. 所属分类:C/C++

    • 发布日期:2009-08-30
    • 文件大小:21504
    • 提供者:hongfengzijun
  1. 16天记住7000考研单词

  2. 第一天 With my own ears I clearly heard the heart beat of the nuclear bomb.我亲耳清楚地听到原子弹的心脏的跳动。2. Next year the bearded bear will bear a dear baby in the rear.明年,长胡子的熊将在后方产一头可爱的小崽.3. Early I searched through the earth for earthware so as to research in e
  3. 所属分类:专业指导

    • 发布日期:2009-10-18
    • 文件大小:219136
    • 提供者:taohuan871216
  1. 数据结构(严蔚敏)代码

  2. c语言 数据结构 书上的源代码 #define maxsize 100 typedef struct { int data[maxsize]; int front; int rear; }sqqueue; int sqinit(sqqueue *p) /*装入队列*/ { p->front=0; p->rear=0; return 1; } int enqueue(sqqueue *q, int e) /*入队*/ { if((q->rear+1)%maxsize==q- &
  3. 所属分类:C

    • 发布日期:2009-10-22
    • 文件大小:309248
    • 提供者:molsshe
  1. 队列rear,number来判队满判队空

  2. 队列的长度number,和队尾元素rear,来判队空和队满,新的操作
  3. 所属分类:专业指导

    • 发布日期:2010-04-22
    • 文件大小:65536
    • 提供者:q445979241
  1. Investigation of Rear Rail and Crash Box Design Issue

  2. Procedure to validate the vehicle design against AZT rear impact requirement
  3. 所属分类:专业指导

    • 发布日期:2010-11-22
    • 文件大小:937984
    • 提供者:fatiguer
  1. game machine Rear projection dedicated,Linear and I2C bus adjustment.

  2. game machine Rear projection dedicated,Linear and I2C bus adjustment.
  3. 所属分类:制造

    • 发布日期:2012-01-16
    • 文件大小:400384
    • 提供者:wchf204
  1. 设计一个环形队列,用front和rear分别作为队头和队尾指针

  2. 设计一个环形队列,用front和rear分别作为队头和队尾指针,另外用一个tag表示队列是空(0)还是不空(1),这样就可以用front==rear作为队满的条件。要求设计队列的相关基本运算算法。
  3. 所属分类:C/C++

    • 发布日期:2012-11-29
    • 文件大小:1024
    • 提供者:www888m
  1. 环形队列,用front和rear作为对头和队尾指针,tag表示队列是空还是不空

  2. 设计一个环形队列,用front和rear分别作为队头和队尾指针,另外用一个tag表示队列是空(0)还是不空(1),这样就可以用front==rear作为堆满的条件。要求设计队列相关基本运算算法。 数据结构上机作业 第二章15题 张宪超
  3. 所属分类:C/C++

    • 发布日期:2014-10-13
    • 文件大小:2048
    • 提供者:u014565040
  1. AV46DOT10 Rear Transition Module for VPX

  2. ANSI/VITA 46.10 Rear Transition Module for VPX Define a rear transition module (RTM) for VPX applications.
  3. 所属分类:其它

    • 发布日期:2017-12-25
    • 文件大小:3145728
    • 提供者:weixin_40622782
  1. fluid sim3 rear

  2. fluid sim3 rear,下载,上传合二为一
  3. 所属分类:其它

  1. ECE-R46 rear view mirror

  2. UNIFORM PROVISIONS CONCERNING THE APPROVAL OF REAR― VIEWMIRRORS, AND OF MOTOR VEHICLES WITH REGARD TO THEINSTALLATION OF REAR-VIEW MIRRORS
  3. 所属分类:硬件开发

    • 发布日期:2018-07-30
    • 文件大小:463872
    • 提供者:changer15309
  1. ANSI/VITA 46.10 Rear Transition Module for VPX——2009

  2. ANSI/VITA 46.10 2009版,英文原版,带目录,可编辑 PDF。 Rear Transition Module for VPX(RTM)
  3. 所属分类:硬件开发

    • 发布日期:2019-03-19
    • 文件大小:3145728
    • 提供者:mojianjunqh2002
  1. Rear wheel feedback.zip

  2. 这是基于一篇关于Rear wheel feedback control论文的算法实现代码,具体可看我博客:https://blog.csdn.net/caokaifa/article/details/92429676
  3. 所属分类:机器学习

    • 发布日期:2019-06-16
    • 文件大小:68608
    • 提供者:caokaifa
  1. 设以数组se[m]存放循环队列的元素,同时设变量rear 和front分别作为队头队尾指针,且队头指针指向队头前一个位置,写出这样设计的循环队列入队和出队算法。

  2. 设以数组se[m]存放循环队列的元素,同时设变量rear 和front分别作为队头队尾指针,且队头指针指向队头前一个位置,写出这样设计的循环队列入队和出队算法。
  3. 所属分类:算法与数据结构

  1. A cascaded deep convolutional network for vehicle logo recognition from frontal and rear images of vehicles

  2. A cascaded deep convolutional network for vehicle logo recognition from frontal and rear images of vehicles
  3. 所属分类:其它

    • 发布日期:2021-02-11
    • 文件大小:3145728
    • 提供者:weixin_38606019
« 12 3 4 5 6 7 8 9 10 ... 14 »