MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / stack using linked list.py

File stack using linked list.py

Python/stack using linked list.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Node:
2 def __init__(self,value=None):
3 self.value = value
4 self.next=next

Callers

nothing calls this directly

Calls 5

StackClass · 0.70
printFunction · 0.50
pushMethod · 0.45
popMethod · 0.45
peekMethod · 0.45

Tested by

no test coverage detected