转:stack
数据结构C#版笔记--堆栈(Stack)
堆栈(Stack)最明显的特征就是“先进后出”,本质上讲堆栈也是一种线性结构,符合线性结构的基本特点:即每个节点有且只有一个前驱节点和一个后续节点。
相对前面学习过的顺序表、链表不同的地方在于:Stack把所有操作限制在"只能在线性结构的某一端"进行,而不能在中间插入或删除元素。下面是示意图:
从示意图中可以看出,堆栈有二种实现方式:基于数组的顺序堆栈实现、类似链表的链式堆栈实现
先抽象堆栈的接口IStack:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
namespace 栈与队列 { public interface IStack<T> { /// <summary> /// 返回堆栈的实际元素个数 /// </summary> /// <returns></returns> int Count(); /// <summary> /// 判断堆栈是否为空 /// </summary> /// <returns></returns> bool IsEmpty(); /// <summary> /// 清空堆栈里的元素 /// </summary> void Clear(); /// <summary> /// 入栈:将元素压入堆栈中 /// </summary> /// <param name="item"></param> void Push(T item); /// <summary> /// 出栈:从堆栈顶取一个元素,并从堆栈中删除 /// </summary> /// <returns></returns> T Pop(); /// <summary> /// 取堆栈顶部的元素(但不删除) /// </summary> /// <returns></returns> T Peek(); } } |
顺序堆栈(SeqStack)的实现:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
using System; using System.Text; namespace 栈与队列 { public class SeqStack<T>:IStack<T> { private int maxsize; private T[] data; private int top; public SeqStack( int size) { data = new T[size]; maxsize = size; top = -1; } #region //接口实现部分 public int Count() { return top + 1; } public void Clear() { top = -1; } public bool IsEmpty() { return top == -1; } public void Push(T item) { if (IsFull()) { Console.WriteLine( "Stack is full" ); return ; } data[++top] = item; } public T Pop() { T tmp = default (T); if (IsEmpty()) { Console.WriteLine( "Stack is empty" ); return tmp; } tmp = data[top]; top--; return tmp; } public T Peek() { if (IsEmpty()) { Console.WriteLine( "Stack is empty!" ); return default (T); } return data[top]; } #endregion public bool IsFull() { return top == maxsize - 1; } public override string ToString() { StringBuilder sb = new StringBuilder(); for ( int i = top;i>=0;i--) { sb.Append(data[i] + "," ); } return sb.ToString().Trim( ',' ); } } } |
链式堆栈(LinkStack)的实现
先定义节点Node.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
namespace 栈与队列 { public class Node<T> { private T data; private Node<T> next; public Node(T data, Node<T> next) { this .data = data; this .next = next; } public Node(Node<T> next) { this .next = next; this .data = default (T); } public Node(T data) { this .data = data; this .next = null ; } public Node() { this .data = default (T); this .next = null ; } public T Data { get { return this .data; } set { this .data = value; } } public Node<T> Next { get { return next; } set { next = value; } } } } |
下面是LinkStack.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
using System; using System.Text; namespace 栈与队列 { public class LinkStack<T>:IStack<T> { private Node<T> top; private int num; //节点个数 /// <summary> /// 顶部节点 /// </summary> public Node<T> Top { get { return top; } set { top = value; } } public LinkStack() { top = null ; num = 0; } public int Count() { return num; } public void Clear() { top = null ; num = 0; } public bool IsEmpty() { if (top == null && num == 0) { return true ; } else { return false ; } } public void Push(T item) { Node<T> q = new Node<T>(item); if (top == null ) { top = q; } else { q.Next = top; top = q; } num++; } public T Pop() { if (IsEmpty()) { Console.WriteLine( "Stack is empty!" ); return default (T); } Node<T> p = top; top = top.Next; num--; return p.Data; } public T Peek() { if (IsEmpty()) { Console.WriteLine( "Stack is empty!" ); return default (T); } return top.Data; } public override string ToString() { StringBuilder sb = new StringBuilder(); if (top != null ) { sb.Append(top.Data.ToString() + "," ); Node<T> p = top; while (p.Next != null ) { sb.Append(p.Next.Data.ToString()+ "," ); p = p.Next; } } return sb.ToString(); } } } |
测试代码片段:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Console.WriteLine( "顺序堆栈测试开始..." ); SeqStack< int > seqStack = new SeqStack< int >(10); seqStack.Push(1); seqStack.Push(2); seqStack.Push(3); Console.WriteLine(seqStack); Console.WriteLine(seqStack.Peek()); Console.WriteLine(seqStack); Console.WriteLine(seqStack.Pop()); Console.WriteLine(seqStack); Console.WriteLine( "链堆栈测试开始..." ); LinkStack< int > linkStack = new LinkStack< int >(); linkStack.Push(1); linkStack.Push(2); linkStack.Push(3); Console.WriteLine(linkStack); Console.WriteLine(linkStack.Peek()); Console.WriteLine(linkStack); Console.WriteLine(linkStack.Pop()); Console.WriteLine(linkStack); Console.ReadLine(); |
.Net中System.Collections.Generic.Stack<T>已经提供了堆栈的基本实现,明白原理后,仍然推荐大家使用内置的实现。
出处:http://yjmyzz.cnblogs.com
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
转:stack的更多相关文章
- 线性数据结构之栈——Stack
Linear data structures linear structures can be thought of as having two ends, whose items are order ...
- Java 堆内存与栈内存异同(Java Heap Memory vs Stack Memory Difference)
--reference Java Heap Memory vs Stack Memory Difference 在数据结构中,堆和栈可以说是两种最基础的数据结构,而Java中的栈内存空间和堆内存空间有 ...
- [数据结构]——链表(list)、队列(queue)和栈(stack)
在前面几篇博文中曾经提到链表(list).队列(queue)和(stack),为了更加系统化,这里统一介绍着三种数据结构及相应实现. 1)链表 首先回想一下基本的数据类型,当需要存储多个相同类型的数据 ...
- Stack Overflow 排错翻译 - Closing AlertDialog.Builder in Android -Android环境中关闭AlertDialog.Builder
Stack Overflow 排错翻译 - Closing AlertDialog.Builder in Android -Android环境中关闭AlertDialog.Builder 转自:ht ...
- Uncaught RangeError: Maximum call stack size exceeded 调试日记
异常处理汇总-前端系列 http://www.cnblogs.com/dunitian/p/4523015.html 开发道路上不是解决问题最重要,而是解决问题的过程,这个过程我们称之为~~~调试 记 ...
- Stack操作,栈的操作。
栈是先进后出,后进先出的操作. 有点类似浏览器返回上一页的操作, public class Stack<E>extends Vector<E> 是vector的子类. 常用方法 ...
- [LeetCode] Implement Stack using Queues 用队列来实现栈
Implement the following operations of a stack using queues. push(x) -- Push element x onto stack. po ...
- [LeetCode] Min Stack 最小栈
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. pu ...
- Stack的三种含义
作者: 阮一峰 日期: 2013年11月29日 学习编程的时候,经常会看到stack这个词,它的中文名字叫做"栈". 理解这个概念,对于理解程序的运行至关重要.容易混淆的是,这个词 ...
- Uncaught RangeError: Maximum call stack size exceeded 超出最大调用值(个人解释)
写了段jq后,报这个错,度娘未解,灵光一闪,找到原因,上代码: Html 结构: <a href="javascript:;" class="item-pic&qu ...
随机推荐
- POJ1065 Wooden Sticks(贪心+动态规划——单调递减或递增序列)
描述 C小加有一些木棒,它们的长度和质量都已经知道,需要一个机器处理这些木棒,机器开启的时候需要耗费一个单位的时间,如果第i+1个木棒的重量和长度都大于等于 第i个处理的木棒,那么将不会耗费时间,否则 ...
- MVC源码分析 - Action/Result 过滤器执行时机
前面 的篇章, 解析了Action方法的查找, 以及 Authorize, Action, Result, Error 过滤器的加载时机. 也花了两篇去看授权和错误过滤器的使用. 但是对于 Actio ...
- SSM事务——事务回滚如何拿到返回值
MySQL数据库一共向用户提供了包括BDB.HEAP.ISAM.MERGE.MyISAM.InnoDB以及Gemeni这7种Mysql表类型.其中BDB.InnoDB属于事务安全类表,而其他属于事务非 ...
- google 被墙的解决办法
昨晚无意中发现的东西,分享给各位使用,google搜索技术方面的东西还是很准确的,可惜被墙了,但是上有政策下有对策…… 谷歌地址: http://74.125.224.18/ http://91.21 ...
- [Golang] 第三方包应该如何安装--在线和离线
一 在线安装 采用go get的方式安装import 的时候找不到对应的包看看pkg里面有没有 二 离线安装 redis客户端采用git clone的方法安装的话可以用以下方法 cd src git ...
- .19-浅析webpack源码之compile流程-rules参数处理(2)
第一步处理rule为字符串,直接返回一个包装类,很简单看注释就好了. test/include/exclude 然后处理test.include.exclude,如下: if (rule.test | ...
- [转]DevOps解决方案-腾讯云
本文转自:https://cloud.tencent.com/solution/devops 什么是 DevOps? DevOps 集文化理念.实践和工具于一身,可以提高企业高速交付应用程序和服务 ...
- 在jQuery定义自己函数
刚才有学习<在jQuery定义自己的扩展方法函数>http://www.cnblogs.com/insus/p/3415312.html .现在想练习一下定义自定义函数.经重构之后,还是发 ...
- eclipse中Cannot change version of project facet Dynamic Web Module to 3.0的问题解决
在做web配置的时候,希望将web Module(Web模块)更换为3.0,发生如下错误: cannot change version of project facet Dynamic Web Mod ...
- Python selenium —— 父子、兄弟、相邻节点定位方式详解
今天跟大家分享下selenium中根据父子.兄弟.相邻节点定位的方法,很多人在实际应用中会遇到想定位的节点无法直接定位,需要通过附近节点来相对定位的问题,但从父节点定位子节点容易,从子节点定位父节点. ...