CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 链表实现

搜索资源列表

  1. joseph小程序

    0下载:
  2. 2.1将n个人围成一圈,m为未进入游戏前的先行码,用来淘汰第一个出 局的人,然后依次给出淘汰者的密码,根据输入的密码来确定下一个淘汰是哪一个,并依次输出被淘汰的人对应的号码。 2.2用单向循环链表实现操作。-2.1 n personal cordons m not yet entered the game before the first yards out for the first out, then eliminated were given the password, the passw
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:49576
    • 提供者:苏亮
  1. JOSEPHUS问题

    0下载:
  2. 这是一个Josephus问题的C++代码,用双向链表实现.有问题题请联系ho1983xx@tom.com (2005-5-22,VC,1KB,下载0次)【向站长举报此文件和某个同类文件可能重复】-This a C++ code about Josephus problem, and use two-way chain form to realize.If you have any problem, please contact ho1983xx@tom.com
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:2415
    • 提供者:zdw
  1. 计算器

    0下载:
  2. 这是一个计算器实现程序,很不错,抓住机会啊
  3. 所属分类:数值算法/人工智能

    • 发布日期:2009-08-01
    • 文件大小:8084
    • 提供者:yimin521
  1. 掌握线性表的结构特点

    0下载:
  2. 。 掌握线性表的基本操作:初始化,插入,删除,查找,判空,求线性表长度等运算在顺序存储结构和链式存储结构上的实现。 通过本章实验帮助学生加深对C语言的使用(特别是函数的参数调用、指针类型的应用)。
  3. 所属分类:数据结构常用算法

    • 发布日期:2010-10-09
    • 文件大小:1411
    • 提供者:oiewwang
  1. 探索NDIS HOOK新的实现方法

    0下载:
  2. NDIS HOOK是专业级防火墙使用的一种拦截技术,NDIS HOOK的重点是如何获得特定协议对应NDIS_PROTOCOL_BLOCK指针,获得了该指针,接下来就可以替换该协议所注册的收发函数,而达到拦截网络数据的目的。 获 得NDIS_PROTOCOL_BLOCK指针的方法一般是用NdisRegisterProtocol注册一个新的协议,所获得的协议句柄实际上就是一 个NDIS_PROTOCOL_BLOCK指针,顺着该指针遍历NDIS_PROTOCOL_BLOCK链表,就可以
  3. 所属分类:驱动编程

  1. 图书管理系统

    0下载:
  2. 图书管理系统:入库,出库,查看库存,查询借阅,还书等功能,用链表实现
  3. 所属分类:源码下载

  1. CPP1 顺序表的基本操作实现实验

    0下载:
  2. 一、顺序表的基本操作实现实验 要求:数据元素类型ElemType取整型int。按照顺序存储结构实现如下算法: 1)创建任意整数线性表(即线性表的元素值随机在键盘上输入)的顺序存储结构(即顺序表),长度限定在25之内; 2)打印/显示(遍历)该线性表(依次打印/显示出表中元素值); 3)在顺序表中查找第i个元素,并返回其值; 4)在顺序表第i个元素之前插入一已知元素; 5)在顺序表中删除第i个元素; 6)求顺序表中所有元素值(整数)之和; 二、链表(
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-03-22
    • 文件大小:2761
    • 提供者:goudezong
  1. CADForPoygons

    0下载:
  2. 一个简单的多边形绘制程序,使用链表实现,这样方便了多边形的移动和删除-A simple polygon drawing program, the use of linked list, so easily move and delete the polygon
  3. 所属分类:Graph program

    • 发布日期:2017-03-31
    • 文件大小:976194
    • 提供者:谢伊
  1. BankSimulation

    0下载:
  2. 一个银行业务的事件驱动模拟系统,银行有两种业务:第一,取款或借款;第二,存款或还款。银行有两个窗口,用两个队列实现。事件表用带头结点的单向链表实现。-A banking system of event-driven simulation, the bank has two operations: first, the withdrawal or loan second, deposit or payment. Bank has two windows, with two queue imple
  3. 所属分类:Console

    • 发布日期:2017-04-02
    • 文件大小:221746
    • 提供者:chaser tang
  1. YSF_Head

    0下载:
  2. 这是带头结点的循环链表实现的约瑟夫环程序。-This is a circular linked list of nodes to take the lead implementation of Josephus program.
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:180702
    • 提供者:wsx
  1. student

    0下载:
  2. 用C语言编写的学生成绩管理系统,可以实现对成绩的添加,删除,修改,用链表实现,操作简单,测试通过-Written in C language student achievement management system that can achieve the results to add, delete, modify, use linked list, simple operation, test
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:230496
    • 提供者:zhangxi
  1. LinkList 实现单链表的所有基本操作

    1下载:
  2. 1、实现单链表的所有基本操作包括表的初始化、第i个元素前插入一个新的元素、删除第i个元素、查找某元素、顺序表的销毁。 2、测试链表所有功能 3、实现循环链表的基本操作,并编写测试程序。 4、实现双向链表的基本操作,并编写测试程序。 5、实现单链表的逆置。 6、判定两个链表是否相交。-A single linked list of all the basic operations, including the initialization of the table,
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-10-22
    • 文件大小:3848
    • 提供者:陈小默
  1. josjos

    0下载:
  2. 约瑟夫问题(循环链表实现)15个数排成一排,从第一个开始,每到第四个,删除,问最后留下的数是原告的第几个数-kkk
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1889046
    • 提供者:王柳才
  1. LinkedList

    0下载:
  2. 十分实用高效的链表实现,比一般课本中的要好很多,adt清晰,函数最优化。-The list is very practical and efficient implementation of better than a lot of textbooks, adt definition, function optimization.
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-07
    • 文件大小:1059031
    • 提供者:aeolian
  1. MULTI

    0下载:
  2. 利用链表实现一元多项式相乘。数据结构习题之一。-List the realization of one dollar to use polynomial multiplication. Exercise one of the data structure.
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:174107
    • 提供者:susu
  1. PolyMul

    0下载:
  2. 数据结构与算法作业(陈刚) 循环链表实现多项式乘法-Data Structures and Algorithms operations (Chen Gang) circular linked list to achieve polynomial multiplication
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:652574
    • 提供者:寥朗
  1. maze

    0下载:
  2. 迷宫问题,分别用深度和广度优先遍历解决。其中stack用链表实现,queue用数组实现。描述见pdf文件。-Maze problems, were the depth and breadth of priority traversal solution. Stack with the achievement of which list, queue to use the array to achieve. Descr iption see pdf file.
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:214005
    • 提供者:吕婉辰
  1. InsertionSort

    0下载:
  2. 用双向链表实现的插入排序,对双向链表的学习是一个很好的入门程序。-Achieve two-way linked list with insertion sort, linked list of two-way learning is a good entry procedures.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1211
    • 提供者:
  1. linkedqueue

    0下载:
  2. 用C++编写的链表实现的队列,有助于了解队列的基本工作原理,是学习数据结构的必做题目。-Linked list implementation C++ write queue, helps to understand the basic working principle of the queue, is the study of data structures must be done subject.
  3. 所属分类:Console

    • 发布日期:2017-05-15
    • 文件大小:3689957
    • 提供者:吴广哲
  1. MyConsolePro

    0下载:
  2. C#用链表实现大数相加,原理简单,可用于参考-C# List with the realization of large numbers add up, the principle is simple, can be used for reference
  3. 所属分类:CSharp

    • 发布日期:2017-04-03
    • 文件大小:8200
    • 提供者:肖希明
« 1 2 ... 9 10 11 12 13 1415 16 17 18 19 ... 50 »
搜珍网 www.dssz.com