CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - doubly linked list

搜索资源列表

  1. Student_grade_system

    0下载:
  2. 双链表存储学生升级,可以新建,增加,修改学生资料,包括姓名和学号。有注释-Upgrade doubly linked list storage students can create, increase, modify the student information, including name and student number. Annotated
  3. 所属分类:CSharp

    • 发布日期:2017-11-08
    • 文件大小:1549
    • 提供者:cc
  1. kuaipai

    0下载:
  2. 在双向链表上实现快速排序的递归算法。 测试实例:{49 38 65 97 76 13 27 49 88 21 105}-Quicksort recursive algorithm on a doubly linked list. Test instance: {4,938,659,776,132,749 88 21 105}
  3. 所属分类:Other systems

    • 发布日期:2017-11-20
    • 文件大小:2386
    • 提供者:张荣鑫
  1. tongxunlu

    0下载:
  2. 一个小的通讯录管理系统,采用双向链表写的 -A small address book management system, wrote a doubly linked list
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-05
    • 文件大小:10270
    • 提供者:张三三
  1. lianbiao

    0下载:
  2. 可以实现单链表、循环链表、双向链表的基本操作-Can achieve the basic operation of a single linked list, circular linked list, doubly linked list
  3. 所属分类:CSharp

    • 发布日期:2017-12-02
    • 文件大小:1652
    • 提供者:王子剑
  1. the-Josephus-problem

    0下载:
  2. 利用建立双向循环链表来解决约瑟夫环的问题-Doubly linked list to solve the Josephus problem
  3. 所属分类:Data structs

    • 发布日期:2017-11-10
    • 文件大小:1024
    • 提供者:aiguo
  1. doublelist

    0下载:
  2. 双向链表,双向链表的头文件,类中函数的实现,及驱动函数-Doubly linked list, doubly linked list of header files, class functions to achieve, and drive function
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-02
    • 文件大小:2814
    • 提供者:胡乐乐
  1. phonebook

    0下载:
  2. 利用双向链表实现电话薄功能,并能进行查找、储存和输出等功能-Doubly linked list phone book function, and find, store and output functions.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-19
    • 文件大小:20757
    • 提供者:陈飞
  1. dLink

    0下载:
  2. 如何自制自己的链表类,提供双链表类的基本成员函数,VS2008调试-Homemade own linked list class, doubly linked list class member functions, VS2008 debugging
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-17
    • 文件大小:604799
    • 提供者:yang
  1. liu

    0下载:
  2. 用〈〈数据结构〉〉中的双向链表作数据结构,结合C/C++语言基本知识。编写一个通讯录管理系统。以把所学数据结构知识应用到实际软件开发中去。 设计内容:本系统应完成一下几方面的功能: 录入信息——enter() 显示信息———display( ) 查找———search( ) 删除信息———delete( ) 存盘———save ( ) 装入———load( ) 设计要求: 1) 每条信息至包含 :学号(NUM)姓名(NAME)性别(SEX)城市(C
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-07
    • 文件大小:167025
    • 提供者:liuhao
  1. link

    0下载:
  2. 实现双向链表的一个类,有简单的前移后移删除添加操作-A doubly linked list class, add simple forward, backward delete operation
  3. 所属分类:Data structs

    • 发布日期:2017-11-17
    • 文件大小:1273
    • 提供者:唐前昭
  1. Locate

    0下载:
  2.   设有一头指针为L的带有表头结点的非循环双向链表,其每个结点中除有prev(前驱指针),data(数据)和next(后继指针)域外,还有一个访问频度域freq。在链表被起用前,其值均初始化为零。每当在链表中进行一次Locate(L,x)运算时,令元素值为x的结点中freq域的值增1,并使此链表中结点保持按访问频度非增(递减)的顺序排列,同时最近访问的结点排在频度相同的结点的最后,以便使频繁访问的结点总是靠近表头。试编写符合上述要求的Locate(L,x)运算的算法,该运算为函数过程,返回找到结
  3. 所属分类:CSharp

    • 发布日期:2016-01-08
    • 文件大小:1024
    • 提供者:hac
  1. DoublyLinkedList.rar

    0下载:
  2. 《数据结构》课程中,双向链表的C++实现。具有很好的参考价值!,The implementation of doubly linked list by C++ programming language.
  3. 所属分类:Data structs

    • 发布日期:2017-11-13
    • 文件大小:2274
    • 提供者:吴学明
  1. 022

    0下载:
  2. 将一个给定的二叉树改成双向链表,要求只能改变左右指针的指向,不能新建节点或改变结构体。-A given binary tree into a doubly linked list, the only change around the pointer to the point, can not create a new node or changing the structure.
  3. 所属分类:Other systems

    • 发布日期:2017-11-11
    • 文件大小:980
    • 提供者:李强
  1. lianbiao

    1下载:
  2. 1.实现单链表的所有基本操作 2.编写主程序测试所有功能 3.实现循环链表的基本操作,并编写测试程序。 4.实现双向链表的基本操作,并编写测试程序。 -Single linked list of all basic operations to write the main program to test all functions 3. Achieve the basic operation of the circular linked list, and the prepara
  3. 所属分类:Data structs

    • 发布日期:2017-10-26
    • 文件大小:3072
    • 提供者:pang
  1. danlianbiao

    0下载:
  2. (0)单链表的创建,结点i处插入X,查找某元素、返回逻辑位置及物理指针并删除 (1)单链表的逆置.(2)清除单链表中多余的重复元素.(3)在有序的循环的带头结点单链表中插入数据X.(4)判断循环双向链表是否按值对称.(5)一元多项式的加法.-(0) The creation of a single linked list, at the junction i insert X, find an element, return to the logic of the position and
  3. 所属分类:Data structs

    • 发布日期:2017-11-27
    • 文件大小:66841
    • 提供者:吴璨
  1. Binary-tree-in-the-establishment

    0下载:
  2. 二叉树的建立 中序遍历二叉树 把二叉树转换成双向链表-Binary tree in the establishment of traversing Binary conversion to binary tree into a doubly linked list
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-07
    • 文件大小:852822
    • 提供者:chen yunfei
  1. double_linked_list

    0下载:
  2. 实现双链表的基本功能,包括链表的创建和消除,节点的增删改查等功能-Doubly linked list of basic functions, including the creation and the elimination of the linked list node additions and deletions to change search functions
  3. 所属分类:Printing program

    • 发布日期:2017-11-08
    • 文件大小:427280
    • 提供者:尤行刚
  1. dlist

    0下载:
  2. 实现双向链表的定义,冒泡排序,插入,删除,输出,反向。-Definition of the doubly linked list, bubble sort, insert, delete, output, reverse.
  3. 所属分类:Other systems

    • 发布日期:2017-11-17
    • 文件大小:2217
    • 提供者:yonhom
  1. cPPshuangxianglianbiao

    0下载:
  2. 双向链表操作,插入,删除,排序,更新,c-Operation of a doubly linked list, insert, delete, sort, update, c++
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-07
    • 文件大小:1166040
    • 提供者:刘帅
  1. 725_3

    0下载:
  2. 使用结构体打造链表中节点,使用指针将零散的节点串成链 表,进行链表的增加节点,查询某节点,删除某节点的操作 。 试着打造双向链表以及除了头指针还有尾指针的链表。 -Use the structure to create a linked list of nodes, using the pointer will be scattered nodes strung linked list, add a node to a linked list, search for a node
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-01
    • 文件大小:179678
    • 提供者:付丽丽
« 1 2 3 4 5 6 78 9 10 11 »
搜珍网 www.dssz.com