CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 链表栈

搜索资源列表

  1. STLexample

    0下载:
  2. 标准模板库STL的学习资料,包括容器,链表,栈等。-Standard Template Library STL learning materials, including containers, linked lists, stacks and so on.
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:2869
    • 提供者:xnhcx
  1. DataConstructure

    0下载:
  2. 学习数据结构的一本宝典,各个章节详细的PPT内容,还包括了递归、哈弗曼编码、链表、树、图、栈与队列等的Flash动画演示,让我们能够更好的感官理解数据结构的机理。对于数据结构的学习很有帮助。-Data Constructure
  3. 所属分类:Other systems

    • 发布日期:2017-05-31
    • 文件大小:12846504
    • 提供者:孙守明
  1. directed_network

    0下载:
  2. 以邻接矩阵的方式确定有向网,完成: A.建立并显示出它的邻接链表; B.以非递归方式进行深度优先遍历,显示遍历的结果,(并随时显示栈的入出情况); C.对该图进行拓补排序,显示拓补排序的结果,并随时显示入度域的变化情况; D.给出某一确定顶点到所有其他顶点的最短路径-Adjacency matrix to determine a directed network, the completion of: A. To establish and demonstrate its adj
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:3454
    • 提供者:li
  1. group-class

    0下载:
  2. 了解链表类的定义与实现,学习其使用方法; 了解栈类的定义与实现,学习其使用方法; 了解队列类的定义与实现,学习其使用方法;了解C++标准模版库STL的使用方法。 -Understand the definition and implementation of linked list class, to learn their use understand the definition and implementation of the stack class, learning t
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:34803
    • 提供者:杨新
  1. Stack_Array

    0下载:
  2. 用栈的功能实现10进制转换成2.8.16进制的小程序。有链表的应用,适合初学者-Stack functions convert decimal 2.8.16 binary applet. Linked list of applications, suitable for beginners
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-27
    • 文件大小:246430
    • 提供者:xiaotao
  1. List.matrix.stack

    0下载:
  2. 此程序包括对链表,矩阵,栈的基本操作,实现了链表的插入,删除,查找,栈的删除与插入,矩阵的压缩存储,矩阵的运算。-This procedure is the operation of the matrix: Matrix compression, storage, computing
  3. 所属分类:Other systems

    • 发布日期:2017-11-26
    • 文件大小:464341
    • 提供者:
  1. Maze-solving-the-problem

    0下载:
  2. 本演示程序中,首先实现一个以链表做存储结构的栈类型,然后编写一个求解迷宫的非递归程序。求得的通路以三元组(i,j,d)的形式输出,其中:(i,j)指示迷宫中的一个坐标的方向。-This demo program, the first to do to achieve a linked list storage structure stack type, and then write a non-recursive procedure to solve the maze. Obtained acc
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-22
    • 文件大小:1683
    • 提供者:张妍
  1. Classical-algorithm-exercises

    0下载:
  2. 经典算法练习,包含队列,栈,指针链表,模板类,模板函数的练习,-Classical algorithm exercises, including queues, stacks, pointer list, template class template function of practice,
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-08
    • 文件大小:1546504
    • 提供者:sonic
  1. 2

    0下载:
  2. 2. 堆栈与单向链表非常相似,但它只允许在链的头部进行插入结点或删除结点的操作。请设计一个整数的堆栈。包括以下函数:建立堆栈,释放堆栈,将一个整数压入堆栈,将当前栈顶的整数弹出栈,返回当前栈顶的元素值,判断当前栈是否为空,自顶向下显示堆栈中的元素。-2 Stack and singly linked list is very similar, but it only allows to insert the head of the chain, or delete nodes node oper
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:752
    • 提供者:于民
  1. list_stack

    0下载:
  2. 自己写的一个C++的链栈的类,结合了链表和栈的特性的一个实用类-To write a C++ chain stack class, combining the characteristics of a linked list and stack a utility class
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:573
    • 提供者:linyun
  1. CPPexam9

    1下载:
  2. 1. 编写程序 Node.h 实现例 9-5 的节点类,并编写测试程序 lab9_1.cpp 实现链表的基本操作。 2. 编写程序 link.h 实现例 9-6 的链表类。在测试程序 lab9_2.cpp 中声明两个整型链表 A和 B,分别插入 5 个元素,然后把 B 中的元素加入 A 的尾部。 3. 编写程序 queue.h,用链表实现队列(或栈)类。在测试程序 lab9_3.cpp 中声明一个 整型队列(或栈)对象,插入 5 个整数,压入队列(或栈),再依次取出并显示出来。 -1
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:650469
    • 提供者:wolf
  1. CPPexam9

    0下载:
  2. 1. 声明 Point 类,有坐标_x,_y 两个成员变量;对 Point 类重载“++”(自增)、“--”(自减)运算符,实现对坐标值的改变。 2. 声明一个车(vehicle)基类,有 Run、Stop 等成员函数,由此派生出自行车(bicycle)类、汽车(motorcar)类,从 bicycle 和 motorcar 派生出摩托车(motorcycle)类,它们都有 Run、Stop 等成员函数。观察虚函数的作用。 1. 编写程序 Node.h 实现例 9-5 的节点类,并编写测
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-06
    • 文件大小:1030959
    • 提供者:wolf
  1. p4

    0下载:
  2. 括号匹配检验(链式栈)交换前m和后n个元素aaasaaassd(线性表顺序结构)-After exchange before m and n elements (linear table order structure)
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:3660
    • 提供者:ll
  1. Example

    0下载:
  2. 自己构建的链表。普通的二叉树的各种功能。对栈的应用,行编辑程序。线索二叉树先中后三种线索化及遍历,还有递归的取消线索化。对出栈序列的统计与输出。-Build your own list. Common binary various functions. Applications for the stack, line editing program. After the first of three binary clues clues and traverse, and recursive c
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:12661
    • 提供者:
  1. main

    0下载:
  2. 二叉树的前中后序遍历,利用链表和栈来实现。-Before the binary tree traversal after
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1478
    • 提供者:Mr.Hu
  1. stack_list

    0下载:
  2. 用链表实现的一个栈,包含pop,push等基本功能-Stack with a linked list implementation, including pop, push and other basic functions
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:917
    • 提供者:刘晨
  1. datastruct

    0下载:
  2. 实现数据结构里面的链表,树,图,栈等功能-tree,graph,stack,linklist of data struct
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-01
    • 文件大小:24412
    • 提供者:jinss507
  1. Chain-Stack-Template

    0下载:
  2. 链栈模板-实现链栈的入栈、出栈、删除与插入。栈的链式存储结构称为链栈。 在算法中要用到多个栈时,最好用链表作为栈的存储结构,即用指针来实现栈。-Chain stack template- the implementation of the stack into the stack, stack, delete and insert. The chain storage structure of the stack is called the chain stack. In the algorit
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-04
    • 文件大小:363351
    • 提供者:UnKnown
  1. Normal-Algorithm

    0下载:
  2. 在本文章里面,有各种举出算法的C语言实现 1、大数阶乘 2、大数乘法 3、任意进制转换 4、最大公约数 5、最小公倍数 6、快速傅里叶变换 7,字符串的替换,查找,截取 8、叉乘法求多边形的面积 9、快速,希尔,选择等各种排序 10、二叉树,链表,链栈 11、二分查找 12、求解线性方程组,也叫中国余数定理 13、求点到直线距离 14、Prim算法求最小生成器 15、判断点与直线的关系,俩条直线的关系 16、求排列组合数,俩矢量角度
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-07
    • 文件大小:1246987
    • 提供者:刘楠
  1. 最简单的链表

    0下载:
  2. 最简单的出进栈程序设计,是新手对链表理解的最好代码(The simplest design of a stack program is the best code for a novice to understand the linked list)
  3. 所属分类:其他

    • 发布日期:2017-12-14
    • 文件大小:1688576
    • 提供者:张满
« 12 »
搜珍网 www.dssz.com