Welcome![Sign In][Sign Up]
Location:
Search - LinkStack

Search list

[CSharpLinkStack

Description: 实现链栈的基本功能,街面很简单,用了就知道-chain stack to achieve the basic functions Streets is very simple, with the know
Platform: | Size: 8375 | Author: 程静 | Hits:

[Other resourcelinkstack

Description: 自己学习了数据结构后,写的一个关于链栈的实现的联系程序,希望大家指教
Platform: | Size: 1088 | Author: 李旭 | Hits:

[CSharpLinkStack

Description: 实现链栈的基本功能,街面很简单,用了就知道-chain stack to achieve the basic functions Streets is very simple, with the know
Platform: | Size: 8192 | Author: 程静 | Hits:

[Data structslinkstack

Description: 自己学习了数据结构后,写的一个关于链栈的实现的联系程序,希望大家指教-Their own after learning the data structure, write a stack on the realization of chain links procedures, hope that we advise
Platform: | Size: 1024 | Author: 李旭 | Hits:

[Data structsLinkStack

Description: 这是一个本人刚接触数据结构时仿编的一个简单的程序,希望对大家有所帮助!-This is a data structure I刚接触made imitation of a simple procedure, I hope all of you to help!
Platform: | Size: 265216 | Author: 陈大圣 | Hits:

[Windows Developzhsy

Description: //定义栈的存储结构 typedef struct StackNode { ElemType data //存放数据 struct StackNode * next //指向下一个结点 }StackNode typedef struct { StackNode * top // 栈顶指针 }LinkStack 实现下列操作: void InitStack(LinkStack &S) // 栈的初始化 void Push(const int &item,LinkStack &S) // 入栈 char Pop(LinkStack &S) // 出栈 char GetTop(LinkStack &S) // 取栈顶元素 int IsEmpty(LinkStack &S) // 判断栈是否为空 void MakeEmpty(LinkStack &S) // 清空栈-//Stack storage structure definition typedef struct StackNode (ElemType data// stored data struct StackNode* next// point to the next node) StackNode typedef struct (StackNode* top// Top-pointer) LinkStack to achieve the following: void InitStack ( LinkStack
Platform: | Size: 2048 | Author: lixian | Hits:

[Data structsdata_structure2

Description: 5、顺序栈 SeqStack.h Test.cpp 6、链式栈 StackNode.h LinkStack.h Test.cpp 7、顺序队列 SeqQueue.h Test.cpp 8、链式队列 QueueNode.h LinkQueue.h Test.cpp -5, the order of the stack SeqStack.h Test.cpp 6, chain stack StackNode.h LinkStack.h Test.cpp 7, the order queue SeqQueue.h Test.cpp 8, chain QueueNode.h LinkQueue.h Test.cpp Queue
Platform: | Size: 2048 | Author: XS | Hits:

[Data structslinkstack

Description: 建立链栈,及其相应功能如插入,删除的实现-create linkstack
Platform: | Size: 1024 | Author: johnny | Hits:

[Data structsLinkStack

Description: 数据结构中的链表部分 主要包含插入删除 查询功能-Linked lists some of the major data structure that contains the inserted delete query function
Platform: | Size: 7168 | Author: 坚持唯一 | Hits:

[Data structslinkstack

Description: 链式栈,实现了出栈和入栈操作,代码简单易懂-Chain stack, the stack and stack operations, the code is easy to understand
Platform: | Size: 147456 | Author: Jijian Shi | Hits:

[OtherLinkStack

Description: 用栈的入栈,出栈,取栈顶元素的操作实现倒序输出数据-Stack onto the stack, the stack, take the top element of the operation to achieve the reverse output data
Platform: | Size: 1024 | Author: 邓佳佳 | Hits:

[AlgorithmLinkStack

Description: 从键盘上输入一算术表达式检验该算术表达式中括号是否配对,例如:表达式(a+b))和a+b)中的括号不配对。-Input from the keyboard on the arithmetic expression in an arithmetic expression tests whether paired brackets, such as: the expression (a+b)), and a+b) in the brackets are not paired.
Platform: | Size: 1024 | Author: 陈晓文 | Hits:

[Data structsLinkStack

Description: c语言编写的括号匹配问题,用的是栈,合适初学者学习和使用-c language in parentheses matching problem using a stack, suitable for beginners to learn and use
Platform: | Size: 165888 | Author: myron | Hits:

[Embeded LinuxLinkQueue-LinkStack

Description: C实现链式队列 C实现链式栈 -The C queue chain C chain stack
Platform: | Size: 2048 | Author: 陈春健 | Hits:

[Embeded Linuxlinkstack

Description: c语言数据结构链栈,数据结构编程基本模块!-c language data structure chain stack, data structures, programming basic module!
Platform: | Size: 1024 | Author: lena | Hits:

[Windows Developlinkstack

Description: 实现链栈的建立,进栈,出栈,获取栈顶元素-To create a linkstack.
Platform: | Size: 1024 | Author: 赵衍健 | Hits:

[ConsoleLinkStack

Description: 链式结构的栈,它是一个Windows控制台程序。并且这是一个封装好的头文件。-The chain structure stack, which is a Windows console program. And this is a good package head file.
Platform: | Size: 1024 | Author: joe | Hits:

[source in ebooklinkstack

Description: 链表实现的栈,并包含相应的栈操作。栈(stack)是一种特殊的线性表。其特殊性在于限定插入和删 除数据元素的操作只能在线性表的一端进行。-Linked list implementation of the stack and the stack contains the corresponding operation. Stack (stack) is a special linear form. Its uniqueness lies in defining insert and delete data elements of the operation can only be carried out online at one end of the table.
Platform: | Size: 1024 | Author: uname | Hits:

[Otherlinkstack

Description: 数据结构 链栈 实现了以下功能: "----------------主菜单---------------"<<endl <<"* 1.初始化 *"<<endl <<"* 2.清空 *"<<endl <<"* 3.销毁 *"<<endl <<"* 4.栈是否为空 *"<<endl <<"* 5.栈的长度 *"<<endl <<"* 6.取栈顶元素 *"<<endl <<"* 7.进栈 *"<<endl <<"* 8.出栈 *"<<endl <<"* 9.数制转换 *"<<endl <<"* 10.退出 *"<<endl <<"-------------------------------------"<<endl-data structure linkstack
Platform: | Size: 1024 | Author: zhanghan | Hits:

[Other栈的应用

Description: 一个头文件,linkstack.h的头文件。(qwewqeqweasdwoqulzhenhsifule)
Platform: | Size: 2124800 | Author: 年少-恋歌 | Hits:
« 12 »

CodeBus www.codebus.net