搜索资源列表
erchashu
- 树型结构是一类重要的非线性数据结构,而二叉树是最为重要,最为常用的类型。树结构在客观世界中广泛存在,如人类社会的族谱和各种社会组织机构都可以用树来形象表示。树在计算机领域中也得到广泛应用,如在编译程序中,可用树来表示源程序的语法结构。而即使是一般的树都能简单地转化为二叉树,因此二叉树显得特别重要。 该软件主要是利用完全二叉树的性质建立一棵二叉树,然后运用二叉链表与栈对二叉树进行复合操作,并实现各种功能。具体包括建立二叉树、遍历二叉树、求二叉树的深度、求二叉树的叶子结点。其中遍历二叉树包含三种
LwIPnew
- 本文描述了LwIP的设计与实现。描述了在协议栈实现中以及像内存与缓冲管理这样的子系统中使用的算法和数据结构。本文还包括LwIP的参考手册以及使用LwIP的代码例子。
calculation
- C语言写的计算器程序,体现了栈的使用,是起初学习数据结构的作品。-err
part1
- 实现输入字符的波兰式与逆波兰式的输出,使用数据结构中栈的应用-Poland, the input character type with the Reverse Polish Notation of output, using the application data structure stack
conversion
- 使用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.
Tszzhcppo
- 实现各个数制间的转换,应用到数数据结构中的栈和队列!可直接使用。 -Between each number system conversion, applied to the stack and queue in the number of data structures! Can be used directly.
LLWIIP_manullW
- LWIP是TCP/IP协议栈的一种实现。LWIP的主要目的是减少存储器运用量与代码尺寸,使LWIP适合应用于小的、资源有限的处理器如嵌入式系统。为了减少处理器与存储器要求,lwIP能通过不需任何何数据据拷贝的API进行裁减。本文叙述了lwIP的设计与实现。叙述了协议实现及子系统中所使用的算法与数据结构如存储与缓冲管理系统。还包含LWIP API的参考手册与使用LWIP 的一些代码源码实例。 -LWIP is an implementation of TCP/IP protocol stack
migong
- 这个小程序,使用栈这种数据结构完成迷宫小程序。通过使用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
cal
- 数据结构大作业中的一个选择,使用了栈等操作,简单易会。-It s Simple but also is very useful.
stackPstringPlist
- 全面演示了数据结构-栈的六大应用,进制转换,括号匹配,行编辑,迷宫求解,表达式运算,其中包括线性表的实现与使用,字符串的实现与使用,栈的实现与使用-Comprehensive presentation of the data structure- Stack six applications, binary conversion, bracket matching, line editing, maze solving, arithmetic expressions, including lin
zhan
- 是数据结构栈的代码,适合数据结构初学者使用。-Stack is a data structure of the code, data structure suitable for beginners to use.
main
- 问题描述 中缀表达式就是我们通常所书写的数学表达式,后缀表达式也称为逆波兰表达式,在编译程序对我们书写的程序中的表达式进行语法检查时,往往就可以通过逆波兰表达式进行。我们所要设计并实现的程序就是将中缀表示的算术表达式转换成后缀表示,例如,将中缀表达式 (A 一 (B*C 十 D)*E) / (F 十 G ) 转换为后缀表示为: ABC*D十E*—FG十/ 注意:为了简化编程实现,假定变量名均为单个字母,运算符只有+,-,*,/ 和^(指数运算),可以处理圆括号(),
calculator
- 一个使用栈的简易计算器,在学习数据结构中的一个小实验-A simple calculator using the stack, a small experiment in learning data structures! !
stack_queue
- 计算机编程入门之数据结构 栈和队列的实现 使用c语言编写-Getting stack data structure of computer programming and implementation using c language written in the queue
Expression-Evaluation
- 数据结构中,使用栈来实现表达式的计算。先将中缀表达式转换成为后缀表达式,在将后缀表达式计算出结果。-Data structure, use the stack to achieve the calculated expression. First infix expression converted into postfix expression in the postfix expression calculated results.
zhan
- c语言以及数据结构中栈的使用以及代码示例-c language, using the stack data structure and code examples
CalculationwirhRPN
- 使用逆波兰式进行四则运算的小例子,加深对数据结构栈的理解。首先将标准四则运算表达式转化为逆波兰式,再进行计算,用到了栈的实现。Codeblocks编辑环境下,使用GCC编译成功-Calculation with RPN(Reverse Polish Notation) on the platform Code:Blocks & GCC
calculation107
- C语言写的计算器程序,体现了栈的使用,是起初学习数据结构的作品。-err
Stack
- 基本数据结构——栈的实现,自己实现的栈的使用,可以完成基本的入栈出栈判空判满的操作,仅供参考-Implementation of Stack
链栈
- 数据结构,使用c++实现的链栈,简单实现没有bug,啦啦啦(Data structure, the use of c++ chain stack, simple implementation without bug, cheerleading)