CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 数据结构-栈

搜索资源列表

  1. Stack

    0下载:
  2. 堆栈实现。堆栈就是这样一种数据结构。它是在内存中开辟一个存储区域,数据一个 顺序地存入(也就是“压入——push”)这个区域之中。有一个地址指针总指向最后一个压入堆栈的数据所在的数据单元,存放这个地址指针的寄存器就叫做堆栈指示器。开始放入数据的单元叫做“栈底”。数据一个一个地存入,这个过程叫做“压栈”。在压栈的过程中,每有一个数据压入堆栈,就放在和前一个单元相连的后面一个单元中,堆栈指示器中的地址自动加1。读取这些数据时,按照堆栈指示器中的地址读取数据,堆栈指示器中的地址数自动减 1。这个过程叫
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:593
    • 提供者:诚溜
  1. stacknode

    0下载:
  2. 栈这种数据结构是一个工具性的数据结构,通常被其它复杂数据结构所使用。比如实现二叉树的遍历的非递归算法。下面就用C++模板实现栈数据结构的一个较完整代码!在书本《数据结构(C语言版)--严慰明》提到栈可以用数组,也可以用链表实现,这里只用链表实现这一数据结构。-This data structure is a stack instrumental data structure is often used for other complex data structures. Such as a bi
  3. 所属分类:MiddleWare

    • 发布日期:2017-04-02
    • 文件大小:2278
    • 提供者:liyuyu
  1. stack-curriculum-design

    0下载:
  2. 数据结构中的栈表,东华大学课程设计-Stack data structure table, Donghua University curriculum design. . . . .
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-11
    • 文件大小:724
    • 提供者:曹天
  1. parking

    0下载:
  2. 数据结构中的停车场问题,考虑到车辆的流量和收费,利用队列和栈进行操作-parking problem in data structure.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:200640
    • 提供者:libin
  1. data-structure-linear-list

    0下载:
  2. 数据结构之--线性链表的代码。 包含线性链表的增删改查等操作。 它是参考和学习的上好资料。 数据结构系列代码包含:排序算法;表,树,图,栈和队列。-Data structures- linear list of codes. Contains linear list CRUD operations. It is a superbly reference and learning information. Series code contains data structures: so
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2551
    • 提供者:欧才俊
  1. Stack

    0下载:
  2. 此代码为对数据结构中顺序栈算法的C语言实现。-This code is the stack algorithm in C language.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:459468
    • 提供者:Jack
  1. liyongzhanheduiliepanduanhuiwen

    0下载:
  2. 数据结构中利用栈和队列来判断回文数列的C程序。-Data structure to determine the use of the stack and queue palindrome column C program.
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:226016
    • 提供者:梁轰
  1. 2_stack

    0下载:
  2. 堆栈都是一种数据项按序排列的数据结构,只能在一端(称为栈顶(top))对数据项进行插入和删除。要点:堆,顺序随意。栈,后进先出(Last-In/First-Out)。-A data stack items are sequentially arranged in a data structure, only one end (referred to as stack (top)) to insert and delete data items. Highlights: heap, in any
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:3578
    • 提供者:姚大波
  1. calculator

    0下载:
  2. 使用栈的数据结构,可以进行简单数学运算的计算器程序。-Using the stack data structure that can perform simple arithmetic calculator program.
  3. 所属分类:Data structs

    • 发布日期:2017-05-07
    • 文件大小:1170347
    • 提供者:jackwu
  1. clib

    0下载:
  2. 包含多种基本数据结构的实现,如堆、栈,队列,树的遍历(包括递归遍历和非递归遍历)-this file including many basic data structure, including heap,stack,queue,tree(tree s recursive traversal and non-recursive traversal)
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:674457
    • 提供者:565407548
  1. Poker

    0下载:
  2. 通过数据结构,队列,栈,数组制作的扑克牌比大小游戏-The data structure, queue, stack, than the size of the array of cards making the game
  3. 所属分类:Other Riddle games

    • 发布日期:2017-05-02
    • 文件大小:819050
    • 提供者:盛余
  1. mowang

    0下载:
  2. 一个运用队列和栈解决魔王语言问题的程序,跟数据结构有关-Queue and stack using the language problem solving procedures devil
  3. 所属分类:Data structs

    • 发布日期:2017-05-07
    • 文件大小:1130060
    • 提供者:盛余
  1. Data-Structure

    0下载:
  2. 通用数据结构入门书籍,线性表,栈,队列等...及C语言的代码实现。-Data Structure book and source code
  3. 所属分类:source in ebook

    • 发布日期:2017-05-22
    • 文件大小:7050514
    • 提供者:
  1. DataStructure

    0下载:
  2. 数据结构链表、栈、树、图的封装好的基本函数源代码。-Data structure chain, trees, graphs, and algorithm design and analysis package good basic function source code.
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:98677
    • 提供者:袁义泓
  1. goods-purchasing

    0下载:
  2. 通过结合栈 链表 队列等几中数据结构并利用它们各自的特性来模拟实现一个简单的商店的商品管理器-we use the stack ,the queue and the linklist and combine their characteristics to make a goods purchasing manager
  3. 所属分类:STL

    • 发布日期:2017-06-08
    • 文件大小:15456884
    • 提供者:wfl
  1. dianlu

    1下载:
  2. 电路布线问题 【问题描述】 印刷电路板将布线区域划分为n╳n个方格阵列。在布线时,电路只能沿直线或直角布线。为避免线路相交,已布线的方格要做封锁标记。设起始位置为a,终止位置为b,求解电路布线问题。 【设计要求】 设计印刷电路板的布线模拟程序。 (1)采用栈或队列等数据结构。 (2)采用穷举法的回溯搜索,求a到b可能的布线线路。 (3)推荐采用层次优先搜索,求a到b最优的布线线路。 -Circuit wiring problem [Problem Descr ip
  3. 所属分类:assembly language

    • 发布日期:2016-05-25
    • 文件大小:37888
    • 提供者:张小红
  1. matching-brackets

    0下载:
  2. 利用c++数据结构 栈 解决括号匹配问题 -Use c++ to solve matching brackets
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:625
    • 提供者:enzo
  1. data

    0下载:
  2. 数据结构常见结构,表,队列,栈。主要用来管理存储数据和运算。-Data structures common structures, tables, queues, stacks. Mainly used to manage data storage and computing.
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:103898
    • 提供者:蒋万松
  1. Stack-and-Queue

    0下载:
  2. 关于 队列 栈 二叉树等数据结构的经典实验及数据-On the queue stack binary tree data structure of the classic experiments and data
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:62006
    • 提供者:刘海
  1. stack

    0下载:
  2. 数据结构 堆栈 实现了以下功能: cout<<"----------------主菜单---------------"<<endl <<"* 1.建立 *"<<endl <<"* 2.输出 *"<<endl <<"* 3.判断栈是否为空 *"<<endl <<"* 4.栈的长度 *"<<endl <<"* 5.输出栈顶元素
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:1290
    • 提供者:zhanghan
« 1 2 ... 32 33 34 35 36 3738 39 40 41 42 ... 47 »
搜珍网 www.dssz.com