gods/examples/linkedliststack.go

24 lines
733 B
Go
Raw Normal View History

// Copyright (c) 2015, Emir Pasic. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2015-03-05 23:43:33 +00:00
package examples
import lls "github.com/emirpasic/gods/stacks/linkedliststack"
2016-06-24 19:52:16 +00:00
// LinkedListStackExample to demonstrate basic usage of LinkedListStack
func LinkedListStackExample() {
2015-03-05 23:43:33 +00:00
stack := lls.New() // empty
stack.Push(1) // 1
stack.Push(2) // 1, 2
stack.Values() // 2, 1 (LIFO order)
2015-03-05 23:43:33 +00:00
_, _ = stack.Peek() // 2,true
_, _ = stack.Pop() // 2, true
_, _ = stack.Pop() // 1, true
_, _ = stack.Pop() // nil, false (nothing to pop)
stack.Push(1) // 1
stack.Clear() // empty
stack.Empty() // true
stack.Size() // 0
}