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

搜索资源列表

  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. PRI优先调度算法模拟C++

  2. Status NowTimeS(LinkQueue *Q,int S,int Si,int *nt){//增加进程周转时间 QueuePtr sq=Q->front->next; while(sq!=NULL) {sq->now=sq->now+S*(int)pow(2.0,(double)(Si-1)); sq=sq->next;} *nt=*nt+S*(int)pow(2.0,(double)(Si-1)); return OK; } ...展开收缩
  3. 所属分类:网络攻防

    • 发布日期:2009-05-31
    • 文件大小:6144
    • 提供者:sky20066
  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. 就是链队列的定义与实现

  2. 该代码定义了链队列的基本功能,对于初学者应该有帮助
  3. 所属分类:C/C++

    • 发布日期:2009-10-31
    • 文件大小:243
    • 提供者:z978824093zf
  1. 数据结构各种算法实现(C++模板)

  2. 目录 1、顺序表 1 Seqlist.h 1 Test.cpp 6 2、单链表 8 ListNode.h 8 SingleList.h 10 test.cpp 20 3、双向链表 22 NodeList.h 22 DoubleList.h 24 Test.cpp 34 4、循环链表 36 ListNode.h 36 CircularList.h 37 Test.cpp 47 5、顺序栈 49 SeqStack.h 49 Test.cpp 54 6、链式栈 55 StackNode.h 55 L
  3. 所属分类:其它

    • 发布日期:2009-11-30
    • 文件大小:723968
    • 提供者:huangyongzdh
  1. 数据结构—停车管理系统.rar

  2. #include #include #include #define MAX 2 #define price 0.05 typedef struct time{ int hour; int min; }Time; typedef struct node{ char num[10]; Time reach; Time leave; }CarNode; typedef struct NODE{ CarNode *stack[MAX+1]; int top; }SeqStackCar; typede
  3. 所属分类:其它

  1. 操作系统---排斥与共享(代码+实验报告)

  2. 一、实验内容 ① 由用户指定要产生的进程及其类别,存入进入就绪队列。    ② 调度程序从就绪队列中提取一个就绪进程运行。如果申请的资源被阻塞则进入相应的等待队列,调度程序调度就绪队列中的下一个进程。进程运行结束时,会检查对应的等待队列,激活队列中的进程进入就绪队列。运行结束的进程进入over链表。重复这一过程直至就绪队列为空。    ③ 程序询问是否要继续?如果要转直①开始执行,否则退出程序。 二、实现方法 /* */ #include #include #include struct PC
  3. 所属分类:网络攻防

    • 发布日期:2010-01-15
    • 文件大小:185344
    • 提供者:w834683731
  1. 哈夫曼树 上机实验 报告

  2. 现在上传,给大家共同分享!   #include   #include   #include   #include   #include   #define M 10   typedef struct Fano_Node   {   char ch;   float weight;   }FanoNode[M];   typedef struct node   {   int start;   int end;   struct node *next;   }LinkQueueNode;  
  3. 所属分类:C

    • 发布日期:2010-04-17
    • 文件大小:72704
    • 提供者:lansam1989
  1. 进程同步问题模拟程序

  2. 模拟进程管理 #include #include //Can only be used in independent situation; //#define getmem(type) (type*)malloc(sizeof(type)) #define buffersize 5 int processnum=0;//the num of processes struct pcb { /* 定义进程控制块PCB */ int flag;//flag=1 denote producer;f
  3. 所属分类:网络攻防

    • 发布日期:2010-06-01
    • 文件大小:7168
    • 提供者:y149604146
  1. 二叉树的层次遍历,绝对正确

  2. Status LevelOrderTraverse(bintree T,Status visit(TElemType e)) { LinkQueue Q; bintree p; InitQueue(Q); //初始化队列Q,用于保存当前结点左右孩子 if (T == NULL) return ERROR; p = T; visit(p->data); // 访问根节点 if (p->lchild) EnQueue(Q, p->lchild); // 若存在左孩子,左孩子进队列
  3. 所属分类:C/C++

    • 发布日期:2010-06-07
    • 文件大小:3072
    • 提供者:tinger520lei
  1. 数据结构课程设计 二叉树遍历代码

  2. /****头文件"head.h"**********/ #include #include struct BiT { char data; BiT *lchild, *rchild; }; struct Queue { BiT *P; Queue *next; }; struct LinkQueue { Queue *front; //队头指针 Queue *rear; //队尾指针 }; /**************函数体*********/ BiT* CreateBiTree(int n
  3. 所属分类:C

    • 发布日期:2010-06-17
    • 文件大小:2048
    • 提供者:red58735451
  1. 用链栈实现链队列逆置(栈的指针的实现的应用)

  2. //用链栈实现链队列逆置 //Wpl #include "linkstack.h" //将链栈基本操作包括进来 typedef struct node /*定义链队列结点类型*/ { datatype data; struct node *next; }linkqueue; typedef struct /*封装队头指针和队尾指针*/ { linkqueue *front; /*定义队头指针*/ linkqueue *rear; /*定义队尾指针*/ }Lqueue; //链队列的初始化 Lq
  3. 所属分类:其它

    • 发布日期:2010-10-28
    • 文件大小:4096
    • 提供者:silly1990
  1. 数据结构各种算法实现(C++模板),doc,代码可以直接拷出来用,321页,18大类的数据结构和算法

  2. 321页的程序,代码可以直接拷贝出来使用。太好的资料! 1、顺序表 1 Seqlist.h 1 Test.cpp 6 2、单链表 8 ListNode.h 8 SingleList.h 10 test.cpp 20 3、双向链表 22 NodeList.h 22 DoubleList.h 24 Test.cpp 34 4、循环链表 36 ListNode.h 36 CircularList.h 37 Test.cpp 47 5、顺序栈 49 SeqStack.h 49 Test.cpp 54
  3. 所属分类:其它

    • 发布日期:2011-01-20
    • 文件大小:723968
    • 提供者:crocostone
  1. 数据结构各种算法实现(C++模板)

  2. 1、顺序表 1 Seqlist.h 1 Test.cpp 6 2、单链表 8 ListNode.h 8 SingleList.h 10 test.cpp 20 3、双向链表 22 NodeList.h 22 DoubleList.h 24 Test.cpp 34 4、循环链表 36 ListNode.h 36 CircularList.h 37 Test.cpp 47 5、顺序栈 49 SeqStack.h 49 Test.cpp 54 6、链式栈 55 StackNode.h 55 Link
  3. 所属分类:其它

    • 发布日期:2011-03-05
    • 文件大小:724992
    • 提供者:qssq1234567
  1. 数据机构——链队列的算法(无漏洞版)

  2. 数据机构——链队列 完整算法 下面举部分 #include using namespace std; typedef struct qnode { int data; struct qnode * next; }Qnode, * Queueptr; // 创建链 Qnode是struct qnode的别名,Queueptr是struct qnode *的别名 typedef struct { Queueptr front; //对头指针 Queueptr rear; //队尾指针 }Link
  3. 所属分类:其它

    • 发布日期:2011-03-09
    • 文件大小:3072
    • 提供者:jgokok
  1. 只有尾结点的链表表示的队列算法

  2. typedef struct N0de //定义结点 { int data; struct N0de *next; }N0de,*QueuePtr; typedef struct //定义尾结点 { QueuePtr rear; }LinkQueue;
  3. 所属分类:C/C++

    • 发布日期:2011-04-26
    • 文件大小:2048
    • 提供者:yu348804912
  1. LinkQueue.txt

  2. 文档中实现了队列了链式表示,并实现了队列了一些主要操作函数.可以作为学习数据结构中队列那一部分时的参考.
  3. 所属分类:C/C++

    • 发布日期:2011-09-30
    • 文件大小:3072
    • 提供者:l360220954
  1. LinkQueue.cpp

  2. LinkQueue.cpp
  3. 所属分类:C++

    • 发布日期:2014-11-10
    • 文件大小:3072
    • 提供者:shengshengwang
  1. 数据结构linkqueue

  2. 关于数据结构的实验代码,linkqueue,测试过可运行
  3. 所属分类:C/C++

    • 发布日期:2015-11-30
    • 文件大小:353
    • 提供者:lsxnacl
  1. DTLib-LinkQueue

  2. DTLib命名空间中添加LinkQueue双向循环链表与StaticQueue顺序循环链表
  3. 所属分类:C++

    • 发布日期:2018-10-23
    • 文件大小:20480
    • 提供者:qq_29962483
« 12 3 »