MCPcopy
hub / github.com/itcharge/AlgoNote / stack_link_stack.py

File stack_link_stack.py

codes/python/03_stack_queue_hash_table/stack_link_stack.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 4

StackClass · 0.70
pushMethod · 0.45
popMethod · 0.45
peekMethod · 0.45

Tested by

no test coverage detected