-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathtask.go
209 lines (170 loc) · 3.61 KB
/
task.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
package main
import (
"bufio"
"fmt"
"math"
"os"
"strconv"
"strings"
)
const (
ErrInputValue = "not found last value"
ActionPlus = "+"
ActionMinus = "-"
ActionDivision = "/"
ActionMulti = "*"
)
// Node элемент списка
type Node struct {
value float64
next *Node
}
// NodeList список
type NodeList struct {
head *Node
size int
}
// Action таблица операций
type Action map[string]func(a, b float64) float64
var actions Action
func main() {
// получаем данные
operation, err := getInputData()
if err != nil {
showError(err)
}
// решение
result, err := solution(operation)
if err != nil {
showError(err)
}
fmt.Println(result)
}
// solution решение задачи
func solution(operation string) (float64, error) {
var (
err error
items = strings.Split(operation, " ")
num float64
)
list := &NodeList{}
actions.initActions()
for i := range items {
if actions.isAction(items[i]) {
if err = list.calculate(items[i]); err != nil {
return 0, err
}
} else {
num, err = strconv.ParseFloat(items[i], 64)
if err != nil {
return 0, err
}
list.push(num)
}
}
return list.peak()
}
// calculate производит операцию
func (n *NodeList) calculate(operation string) error {
var firstNum, secondNum float64
var err error
secondNum, err = n.pop()
if err != nil {
return err
}
firstNum, err = n.pop()
if err != nil {
return err
}
n.push(actions[operation](firstNum, secondNum))
return nil
}
// push добавляет элемент в список
func (n *NodeList) push(value float64) {
node := Node{
value: value,
next: nil,
}
if n.head == nil {
n.head = &node
} else {
last := n.head
n.head = &node
n.head.next = last
}
n.size++
}
// pop извлекает элемент из списка
func (n *NodeList) pop() (float64, error) {
if !n.isEmpty() {
x := n.head.value
head := n.head.next
n.head = head
n.size--
return x, nil
}
return 0, fmt.Errorf(ErrInputValue)
}
// peak получает последний элемент
func (n *NodeList) peak() (float64, error) {
if !n.isEmpty() {
return n.head.value, nil
}
return 0, fmt.Errorf(ErrInputValue)
}
// initActions
func (Action) initActions() {
actions = make(map[string]func(a, b float64) float64)
actions[ActionPlus] = func(a, b float64) float64 {
return a + b
}
actions[ActionMinus] = func(a, b float64) float64 {
return a - b
}
actions[ActionMulti] = func(a, b float64) float64 {
return a * b
}
actions[ActionDivision] = func(a, b float64) float64 {
return math.Floor(a / b)
}
}
// isAction проряет является ил строка операцией
func (Action) isAction(item string) bool {
if _, ok := actions[item]; ok {
return true
}
return false
}
// isEmpty проверяет пуст ли список
func (n *NodeList) isEmpty() bool {
return n.size == 0
}
// getInputData парсинг входных данных
func getInputData() (operation string, err error) {
input, err := getInputFromFile()
if err != nil {
showError(err)
}
// close file
defer func(input *os.File) {
_ = input.Close()
}(input)
reader := bufio.NewReader(input)
strNum, _, _ := reader.ReadLine()
operation = string(strNum)
// clear bufio
defer reader.Reset(reader)
return
}
// getInputFromFile получение input из файла
func getInputFromFile() (*os.File, error) {
file, err := os.Open("input.txt")
if err != nil {
return nil, err
}
return file, nil
}
// showError обработка ошибки
func showError(err interface{}) {
panic(err)
}