linked_stack_test
linked_stack_test.go 源码
package linked_stack
import (
"fmt"
"testing"
)
func TestLinkedStack(t *testing.T) {
stack := NewLinkedStack()
stack.Push(1)
stack.Push(4)
stack.Push(2)
stack.Push(7)
pop, _ := stack.Pop()
fmt.Println(pop)
peek, _ := stack.Peek()
fmt.Println(peek)
fmt.Println(stack.Size())
stack.PrintData()
}
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦