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

搜索资源列表

  1. erchashu

    1下载:
  2. 树型结构是一类重要的非线性数据结构,而二叉树是最为重要,最为常用的类型。树结构在客观世界中广泛存在,如人类社会的族谱和各种社会组织机构都可以用树来形象表示。树在计算机领域中也得到广泛应用,如在编译程序中,可用树来表示源程序的语法结构。而即使是一般的树都能简单地转化为二叉树,因此二叉树显得特别重要。 该软件主要是利用完全二叉树的性质建立一棵二叉树,然后运用二叉链表与栈对二叉树进行复合操作,并实现各种功能。具体包括建立二叉树、遍历二叉树、求二叉树的深度、求二叉树的叶子结点。其中遍历二叉树包含三种
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:2875
    • 提供者:彭枝考
  1. LwIPnew

    0下载:
  2. 本文描述了LwIP的设计与实现。描述了在协议栈实现中以及像内存与缓冲管理这样的子系统中使用的算法和数据结构。本文还包括LwIP的参考手册以及使用LwIP的代码例子。
  3. 所属分类:网络编程

    • 发布日期:2008-10-13
    • 文件大小:444012
    • 提供者:刘奉
  1. calculation

    0下载:
  2. C语言写的计算器程序,体现了栈的使用,是起初学习数据结构的作品。-err
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2017
    • 提供者:zhaozheng
  1. part1

    0下载:
  2. 实现输入字符的波兰式与逆波兰式的输出,使用数据结构中栈的应用-Poland, the input character type with the Reverse Polish Notation of output, using the application data structure stack
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:974993
    • 提供者:yc
  1. conversion

    0下载:
  2. 使用VC6.0编写的进制转换程序,利用数据结构中栈的基本知识,用到了进栈出栈等-Prepared using VC6.0 hex conversion program, the stack data structure using the basic knowledge to use the stack into the stack, etc.
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-10
    • 文件大小:2183317
    • 提供者:liqiang
  1. Tszzhcppo

    0下载:
  2. 实现各个数制间的转换,应用到数数据结构中的栈和队列!可直接使用。 -Between each number system conversion, applied to the stack and queue in the number of data structures! Can be used directly.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2367
    • 提供者:nicollejia
  1. LLWIIP_manullW

    0下载:
  2. LWIP是TCP/IP协议栈的一种实现。LWIP的主要目的是减少存储器运用量与代码尺寸,使LWIP适合应用于小的、资源有限的处理器如嵌入式系统。为了减少处理器与存储器要求,lwIP能通过不需任何何数据据拷贝的API进行裁减。本文叙述了lwIP的设计与实现。叙述了协议实现及子系统中所使用的算法与数据结构如存储与缓冲管理系统。还包含LWIP API的参考手册与使用LWIP 的一些代码源码实例。 -LWIP is an implementation of TCP/IP protocol stack
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-02
    • 文件大小:693465
    • 提供者:家庭教师
  1. migong

    0下载:
  2. 这个小程序,使用栈这种数据结构完成迷宫小程序。通过使用0,1手动创建迷宫,然后由程序找到迷宫的出路。主要是对栈的使用。-This little program, use this stack data structure to complete the maze applet. Through the use of 0,1 manually create the maze, and then find a way out of the maze by the program. Mainly us
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-03
    • 文件大小:13172
    • 提供者:殷宇威
  1. cal

    0下载:
  2. 数据结构大作业中的一个选择,使用了栈等操作,简单易会。-It s Simple but also is very useful.
  3. 所属分类:CSharp

    • 发布日期:2017-11-13
    • 文件大小:103957
    • 提供者:张涛
  1. stackPstringPlist

    0下载:
  2. 全面演示了数据结构-栈的六大应用,进制转换,括号匹配,行编辑,迷宫求解,表达式运算,其中包括线性表的实现与使用,字符串的实现与使用,栈的实现与使用-Comprehensive presentation of the data structure- Stack six applications, binary conversion, bracket matching, line editing, maze solving, arithmetic expressions, including lin
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-26
    • 文件大小:13490654
    • 提供者:王伟
  1. zhan

    0下载:
  2. 是数据结构栈的代码,适合数据结构初学者使用。-Stack is a data structure of the code, data structure suitable for beginners to use.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-30
    • 文件大小:4085
    • 提供者:五五
  1. main

    0下载:
  2. 问题描述   中缀表达式就是我们通常所书写的数学表达式,后缀表达式也称为逆波兰表达式,在编译程序对我们书写的程序中的表达式进行语法检查时,往往就可以通过逆波兰表达式进行。我们所要设计并实现的程序就是将中缀表示的算术表达式转换成后缀表示,例如,将中缀表达式 (A 一 (B*C 十 D)*E) / (F 十 G ) 转换为后缀表示为: ABC*D十E*—FG十/ 注意:为了简化编程实现,假定变量名均为单个字母,运算符只有+,-,*,/ 和^(指数运算),可以处理圆括号(),
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:1439
    • 提供者:yyz
  1. calculator

    0下载:
  2. 一个使用栈的简易计算器,在学习数据结构中的一个小实验-A simple calculator using the stack, a small experiment in learning data structures! !
  3. 所属分类:Other systems

    • 发布日期:2017-05-02
    • 文件大小:882472
    • 提供者:wangsi
  1. stack_queue

    0下载:
  2. 计算机编程入门之数据结构 栈和队列的实现 使用c语言编写-Getting stack data structure of computer programming and implementation using c language written in the queue
  3. 所属分类:Other systems

    • 发布日期:2017-05-02
    • 文件大小:704421
    • 提供者:刘恒
  1. Expression-Evaluation

    0下载:
  2. 数据结构中,使用栈来实现表达式的计算。先将中缀表达式转换成为后缀表达式,在将后缀表达式计算出结果。-Data structure, use the stack to achieve the calculated expression. First infix expression converted into postfix expression in the postfix expression calculated results.
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:152716
    • 提供者:baiqiuju
  1. zhan

    0下载:
  2. c语言以及数据结构中栈的使用以及代码示例-c language, using the stack data structure and code examples
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:59278
    • 提供者:王小宝
  1. CalculationwirhRPN

    0下载:
  2. 使用逆波兰式进行四则运算的小例子,加深对数据结构栈的理解。首先将标准四则运算表达式转化为逆波兰式,再进行计算,用到了栈的实现。Codeblocks编辑环境下,使用GCC编译成功-Calculation with RPN(Reverse Polish Notation) on the platform Code:Blocks & GCC
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2414
    • 提供者:wangkai
  1. calculation107

    0下载:
  2. C语言写的计算器程序,体现了栈的使用,是起初学习数据结构的作品。-err
  3. 所属分类:Multimedia Develop

    • 发布日期:2017-04-13
    • 文件大小:2058
    • 提供者:qin94802
  1. Stack

    0下载:
  2. 基本数据结构——栈的实现,自己实现的栈的使用,可以完成基本的入栈出栈判空判满的操作,仅供参考-Implementation of Stack
  3. 所属分类:Console

    • 发布日期:2017-04-30
    • 文件大小:52031
    • 提供者:Mr.Bubbles
  1. 链栈

    0下载:
  2. 数据结构,使用c++实现的链栈,简单实现没有bug,啦啦啦(Data structure, the use of c++ chain stack, simple implementation without bug, cheerleading)
  3. 所属分类:其他

    • 发布日期:2018-01-09
    • 文件大小:1024
    • 提供者:DeepDark
« 12 »
搜珍网 www.dssz.com