-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack.py
79 lines (62 loc) · 1.51 KB
/
stack.py
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
class Node:
def __init__(self, data):
self.data = data
self.next = None
class Stack:
def __init__(self):
self.head = None
def isempty(self):
if self.head == None:
return True
else:
return False
def push(self,data):
if self.head == None:
self.head=Node(data)
else:
newnode = Node(data)
newnode.next = self.head
self.head = newnode
def pop(self):
poppednode = self.head
self.head = self.head.next
poppednode.next = None
return poppednode.data
def peek(self):
if self.isempty():
return None
else:
return self.head.data
def display(self):
iternode = self.head
if self.isempty():
print("Pino on tyhjä. Ei tulostettavaa.")
else:
while(iternode != None):
print(iternode.data)
iternode = iternode.next
return
pino = Stack()
pino.push(1)
pino.push(2)
pino.push(3)
pino.push(4)
print()
pino.display()
print("Päälimmäinen alkio: ", pino.peek())
pino.pop()
print()
pino.display()
print("Päälimmäinen alkio: ", pino.peek())
pino.pop()
print()
pino.display()
print("Päälimmäinen alkio: ", pino.peek())
pino.pop()
print()
pino.display()
print("Päälimmäinen alkio: ", pino.peek())
pino.pop()
print()
pino.display()
print("Päälimmäinen alkio: ", pino.peek())