CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - 栈

搜索资源列表

  1. 栈类.rar

    0下载:
  2. 栈(stack)是程序设计过程中经常遇到朝气一种数据结构形式,它对于数据的存放和操作有下面这样的特点: 1) 它只有一个对数据进行存入和取出的端口; 2) 后进者先出,即最后被存入的数据将首先被取出。其形式很象一种存储硬币的小容器,每次只可以从顶端压入一个硬币,而取出也只可以从顶端进行,即后进先出。 这样的数据存储和管理形式在一些程序设计中很有用。例如,编译系统中(这是一类比较复杂的程序),对于函数调用的处理、对于表达式计算的处理,都利用了栈这样的数据结构。
  3. 所属分类:数值算法/人工智能

    • 发布日期:
    • 文件大小:2734
    • 提供者:
  1. 栈的数制转换算法

    0下载:
  2. 进制转换是数据结构中的栈的应用的一个典型例子- Enters the system transformation is in a construction of data stack application typical example
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1083
    • 提供者:杨涛
  1. 一个功能强大的栈

    0下载:
  2. 一个功能强大的栈,用法很灵活,你会发现很有趣- A function formidable stack, the usage is very flexible, you can discover very interesting
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2940
    • 提供者:he
  1. 用栈设置密码

    0下载:
  2. 这个算法,是用来设置密码的,有数据结构中的栈来实现的。-The algorithm is used to set up passwords, and data structure of the stack to achieve.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1728
    • 提供者:纵横驰骋
  1. 顺序栈

    0下载:
  2. 数据结构:顺序栈-data structure : Stack order
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:10993
    • 提供者:longyuee
  1. 第三章 栈与队列习题答案

    0下载:
  2. 第三章 栈与队列习题答案-The answer of stack and queue
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:7918
    • 提供者:陈如
  1. 顺序栈的基本操作

    1下载:
  2. 顺序栈的基本操作,一共9个,与吴伟民数据结构课本完全一致,用C实现-order stack the basic operation, a total of nine, and Xiulan WU Weimin textbooks data structure is fully consistent with achieving C
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1186
    • 提供者:李雷
  1. 链栈

    0下载:
  2. 数据结构里的栈,用链表这种存储方式实现,和用数组方式存储的有个比较。-data structure, the stack, with Chain achieve such storage, and the use of the array is stored in a relatively.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2334
    • 提供者:天涯明月
  1. 实现顺序栈的各种基本运算

    1下载:
  2. 1、编写一个程序algo3-1.cpp,实现顺序栈的各种基本运算,并在此基础上设计一个主程序实现如下功能: (1)初始化栈S。 (2)判断栈S是否非空。 (3)依次进栈元素a,b,c,d,e。 (4)判断栈S是否非空。 (5)输出栈的长度。 (6)输出从栈顶到栈底的元素。 (7)输出出栈序列。 (8)判断栈S是否非空。 (9)释放栈 ,1, the preparation of a program algo3-1.cpp, the realization of
  3. 所属分类:数据结构常用算法

    • 发布日期:2015-10-25
    • 文件大小:1107
    • 提供者:杨雪
  1. 迷宫 数据结构(C语言版)关于栈与队列

    0下载:
  2. 迷宫 数据结构(C语言版)关于栈与队列,求迷宫从入口到出口的所有路径,Maze data structure (C language version) on the stack and queue, and the maze from the entrance to the export of all path
  3. 所属分类:数据结构常用算法

    • 发布日期:2016-01-26
    • 文件大小:1436
    • 提供者:
  1. Stack 实现栈的所有基本操作

    2下载:
  2. 1、定义顺序栈类型,实现栈的所有基本操作。 2、定义链栈类型,实现栈的所有基本操作。 3、实现数制的转换-1, define the order of the stack type, to achieve the stack all the basic operations. 2, define the chain stack type to achieve the stack all the basic operations. 3, conversion of number sys
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-10-17
    • 文件大小:2299
    • 提供者:陈小默
  1. 栈类

    0下载:
  2. 栈(stack)是程序设计过程中经常遇到朝气一种数据结构形式,它对于数据的存放和操作有下面这样的特点: 1) 它只有一个对数据进行存入和取出的端口; 2) 后进者先出,即最后被存入的数据将首先被取出。其形式很象一种存储硬币的小容器,每次只可以从顶端压入一个硬币,而取出也只可以从顶端进行,即后进先出。 这样的数据存储和管理形式在一些程序设计中很有用。例如,编译系统中(这是一类比较复杂的程序),对于函数调用的处理、对于表达式计算的处理,都利用了栈这样的数据结构。- The stack (stack)
  3. 所属分类:Data structs

    • 发布日期:2017-11-18
    • 文件大小:3005
    • 提供者:墨镜牛郎
  1. 栈aaa

    0下载:
  2. 数据结构中栈的相关操作,数据结构中栈的相关操作-data structure stack of operation, stack data structure of operation
  3. 所属分类:Data structs

    • 发布日期:2017-11-20
    • 文件大小:1387
    • 提供者:小王
  1. parkSystem

    0下载:
  2. 利用栈知识来模拟停车场系统,通过车牌照和停车时间来管理停车场。-Knowledge of the use of stacks to simulate car park system, through the vehicle license plate and parking time to the management of car parks.
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1758
    • 提供者:sunfuquan
  1. migong

    0下载:
  2. 数据结构中栈算法的简单应用,通过程序模拟迷宫的生成和寻找出口的动态演示过程-Data structure in a simple stack algorithm applications, the adoption of procedures for the generation and simulation of a maze to find the export dynamic demonstration
  3. 所属分类:Data structs

    • 发布日期:2017-05-15
    • 文件大小:43069
    • 提供者:seaman
  1. zhanduilie

    0下载:
  2. 栈和队列的基本操作实现及其应用,肯定对你有帮助的!需要的请下载!-Stack and queue and its application to achieve the basic operation is definitely helpful for you! Need to download!
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:5096
    • 提供者:侯坚强
  1. 3698

    0下载:
  2. 栈和队列的基本操作及应用,内有实验报告和具体程序实现!-Stack and queue the basic operation and applications, there are experimental reports and the specific procedures to achieve!
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:19150
    • 提供者:
  1. 栈和队列的链接

    0下载:
  2. 数据结构实验 栈和队列的连接实验 ①编写程序实现循环队列的初始化、入队和出队操作 ②编写程序实现将一个任意的十进制数转换成对应的二进制数 要求: ①用栈的基本操作来实现(具体栈的存储结构可用顺序栈也可用链栈) 十进制数由键盘输入,输出对应的二进制数。 ②在初始化队列后,利用入队操作构建具有n个元素的队列并依次输出队列中的元素。在构建的具有n个元素的队列中,执行出队操作,输出出队后队列中的剩余元素(Data structure experiment stack and queue
  3. 所属分类:数据结构

    • 发布日期:2017-12-16
    • 文件大小:1024
    • 提供者:蚊子酱
  1. 3.栈的应用举例

    0下载:
  2. 数据结构中栈的使用,有注释,参考清华严蔚敏的(Data structure in the use of the stack, there are notes)
  3. 所属分类:数值算法/人工智能

    • 发布日期:2018-01-05
    • 文件大小:4469760
    • 提供者:Elvan
  1. 顺序栈验证实验

    0下载:
  2. 顺序栈的模板,包括构造函数,析构函数,入栈,出栈,取栈顶元素,判空等基本操作,并在主函数中实现(The template of the sequential stack, including the constructor, the destructor, the push, the pop, the getpop,the empty. Then realize the function of each in the main function.)
  3. 所属分类:数据结构

    • 发布日期:2018-05-02
    • 文件大小:401408
    • 提供者:依米阳光
« 12 3 4 5 6 7 8 9 10 ... 50 »
搜珍网 www.dssz.com