跟着动画学 Go 数据结构之 Go 实现栈#私藏项目实操分享#

简介: 跟着动画学 Go 数据结构之 Go 实现栈#私藏项目实操分享#

什么是栈

image.png

类似于链表,栈是一种简单的数据结构。在栈中,数据的取值顺序非常重要。

栈的生活例子

栈也有许多真实生活示例。考虑在食堂中彼此堆叠的板的简单示例。栈有点像洗碟子然后堆碟子,最先洗的一定是最上面的碟子,然后洗干净后,放到碟子的最下面。第一个放好的碟子永远是最后一个被取用的。可以简单地看到它遵循LIFO / FILO 原则。

栈的操作

栈是一种插入和删除总在一端的有序列表,最后插入的元素时总是第一个被删除的元素,这种特征也被称为 Last in First out(LIFO)或者 First in Last out(FILO)。

入栈的操作叫做 push ; 动画演示如下:

1.gif

出栈的操作叫做 pop,动画演示如下:

2.gif

往一个满栈里插入元素叫做 栈溢出;

栈的方法

push(e): Add e at the top of the (implicit) stack
pop(): Remove and return the top element of the stack
empty(): Return the Boolean value true just in case the stack is empty.
top(): Return the top element of that stack without removing it.

栈的结构

type Stack interface {
    containers.Container
    Push(e interface{})
    Pop() (interface{}, error)
    Top() (interface{}, error)        
}

栈的数组实现

package main
import (
    "errors"
    "fmt"
)
// ArrayStack is an implementation of a stack.
type ArrayStack struct {
    elements []interface{}
}
// New creates a new array stack.
func New() *ArrayStack {
    return &ArrayStack{}
}
// Size returns the number of elements in the stack.
func (s *ArrayStack) Size() int {
    return len(s.elements)
}
// Empty returns true or false whether the stack has zero elements or not.
func (s *ArrayStack) Empty() bool {
    return len(s.elements) == 0
}
// Clear clears the stack.
func (s *ArrayStack) Clear() {
    s.elements = make([]interface{}, 0, 10)
}
// Push adds an element to the stack.
func (s *ArrayStack) Push(e interface{}) {
    s.elements = append(s.elements, e)
}
// Pop fetches the top element of the stack and removes it.
func (s *ArrayStack) Pop() (interface{}, error) {
    if s.Empty() {
        return nil, errors.New("Pop: the stack cannot be empty")
    }
    result := s.elements[len(s.elements)-1]
    s.elements = s.elements[:len(s.elements)-1]
    return result, nil
}
// Top returns the top of element from the stack, but does not remove it.
func (s *ArrayStack) Top() (interface{}, error) {
    if s.Empty() {
        return nil, errors.New("Top: stack cannot be empty")
    }
    return s.elements[len(s.elements)-1], nil
}
func main() {
    s := New()
    s.Push(1)
    s.Push(2)
    s.Push(3)
    fmt.Println(s)
    fmt.Println(s.Pop())
    fmt.Println(s)
    fmt.Println(s.Top())
    fmt.Println("栈的长度:", s.Size())
    fmt.Println("栈是否为空:", s.Empty())
    s.Clear()
    if s.Empty() {
        fmt.Println("栈为空")
    }
}

运行结果:

&{[1 2 3]}
3 <nil>
&{[1 2]}
2 <nil>
栈的长度: 2
栈是否为空: false
栈为空

栈的链表实现

package linkedliststack
import "errors"
type LinkedStack struct{
    topPtr *node
    count int
}
func (s *LinkedStack) Size() int {
    return s.count
}
func (s *LinkedStack) Empty() bool {
    return s.count == 0
}
func (s *LinkedStack) Clear() {
    s.count = 0
    s.topPtr = nil
}
func (s *LinkedStack) Push(e interface{}) {
    s.topPtr = &node{e, s.topPtr}
    s.count++
}
func (s *LinkedStack) Pop() (interface{}, error) {
    if s.count == 0 {
        return nil, errors.New("Pop: the stack cannot be empty")
    }
    result := s.topPtr.item
    s.topPtr = s.topPtr.next
    s.count--
    return result, nil
}
func (s *LinkedStack) Top() (interface{}, error)  {
    if s.count == 0 {
        return nil, errors.New("Pop: the stack cannot be empty")
    }
    result s.topPtr.item, nil
}

读者可以试着自己尝试去写 main 函数验证链表实现的栈。


相关文章
|
3天前
|
C语言
【数据结构】栈和队列(c语言实现)(附源码)
本文介绍了栈和队列两种数据结构。栈是一种只能在一端进行插入和删除操作的线性表,遵循“先进后出”原则;队列则在一端插入、另一端删除,遵循“先进先出”原则。文章详细讲解了栈和队列的结构定义、方法声明及实现,并提供了完整的代码示例。栈和队列在实际应用中非常广泛,如二叉树的层序遍历和快速排序的非递归实现等。
45 9
|
3天前
|
网络协议 安全 Go
Go语言进行网络编程可以通过**使用TCP/IP协议栈、并发模型、HTTP协议等**方式
【10月更文挑战第28天】Go语言进行网络编程可以通过**使用TCP/IP协议栈、并发模型、HTTP协议等**方式
23 13
|
1天前
|
存储
系统调用处理程序在内核栈中保存了哪些上下文信息?
【10月更文挑战第29天】系统调用处理程序在内核栈中保存的这些上下文信息对于保证系统调用的正确执行和用户程序的正常恢复至关重要。通过准确地保存和恢复这些信息,操作系统能够实现用户模式和内核模式之间的无缝切换,为用户程序提供稳定、可靠的系统服务。
20 4
|
5天前
|
算法 安全 NoSQL
2024重生之回溯数据结构与算法系列学习之栈和队列精题汇总(10)【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构王道第3章之IKUN和I原达人之数据结构与算法系列学习栈与队列精题详解、数据结构、C++、排序算法、java、动态规划你个小黑子;这都学不会;能不能不要给我家鸽鸽丢脸啊~除了会黑我家鸽鸽还会干嘛?!!!
|
24天前
初步认识栈和队列
初步认识栈和队列
53 10
|
19天前
数据结构(栈与列队)
数据结构(栈与列队)
15 1
|
23天前
|
存储 JavaScript 前端开发
为什么基础数据类型存放在栈中,而引用数据类型存放在堆中?
为什么基础数据类型存放在栈中,而引用数据类型存放在堆中?
61 1
|
20天前
【数据结构】-- 栈和队列
【数据结构】-- 栈和队列
13 0
|
24天前
探索顺序结构:栈的实现方式
探索顺序结构:栈的实现方式
|
24天前
|
存储 C语言
栈和队列题目练习
栈和队列题目练习
14 0