使用Golang實現棧的鏈式儲存

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

棧就像一個水杯後進先出,棧的鏈式儲存中後進去元素的next總是指向先進去的元素, 棧頂元素總是和最後一個進去的元素相同

type Elem int

// Node 元素節點結構

type Node struct {

data Elem

next *Node

}

// StackLink 棧

type StackLink struct {

top    *Node // 棧頂元素

length int

}

// InitStack 初始化一個棧,棧先進後出

func (s *StackLink) InitStack() {

s.top = nil

}

// Push 添加一個棧元素

func (s *StackLink) Push(data Elem) {

// 創造一個節點

node := new(Node)

node.data = data

node.next = s.top

s.top = node

s.length++

}

// Pop 彈出一個元素

func (s *StackLink) Pop(e *Elem) error {

if s.Empty() {

return errors.New("empty stack")

}

*e = s.top.data

node := s.top

s.top = node.next

s.length--

return nil

}

// Empty 是否為空白棧

func (s *StackLink) Empty() bool {

return s.top == nil

}

// Length 棧的元素個數

func (s *StackLink) Length() int {

return s.length

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.