-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack.go
115 lines (96 loc) · 2.01 KB
/
stack.go
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
109
110
111
112
113
114
115
package main
import (
"errors"
"fmt"
)
// Stack data structure
type Stack struct {
top *node
length int
}
type node struct {
value interface{}
prev *node
}
// New will create a new stack in memory
func New(values ...interface{}) *Stack {
if len(values) == 0 {
return &Stack{
top: nil,
length: 0,
}
}
// If we receive values in the constructor, fill the stack and return it
s := &Stack{
// Create our top node so we don't get a nil pointer dereference
top: &node{
value: values[0],
prev: nil,
},
length: 0,
}
for i, v := range values {
// Ignore the first value since we created that previously
if i != 0 {
s.Push(v)
}
}
return s
}
// Len will return the length of the stack
func (s *Stack) Len() int {
return s.length
}
// Peek will return the top of the stack
func (s *Stack) Peek() interface{} {
if s.length == 0 {
return nil
}
return s.top.value
}
// Pop will remove the top item of the stack and return it
func (s *Stack) Pop() interface{} {
if s.length == 0 {
return nil
}
// Retrieve the node and reset the top of the stack as well as the length
node := s.top
s.top = node.prev
s.length--
return node.value
}
// Push will add a new item to the top of the stack
func (s *Stack) Push(v interface{}) {
node := &node{
value: v,
prev: s.top,
}
// Reset the top stack node and increase the length
s.top = node
s.length++
}
// Print will traverse the stack and print out the values to os.Stdout
func (s *Stack) Print() {
top := s.top
for i := 0; i <= s.length; i++ {
fmt.Printf("%v -> ", top.value)
top = top.prev
}
fmt.Println()
}
// Search will traverse the stack and look for a specific value
func (s *Stack) Search(value interface{}) (interface{}, error) {
// replicate the stack so we can modify the top node
var err error
top := s.top
for i := 0; i <= s.length; i++ {
switch {
case top.value == value:
return value, nil
case top.value == nil:
err = errors.New("Item not found in stack")
}
top = top.prev
}
return nil, err
}