Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/itcharge/AlgoNote
/ Node
Class
Node
codes/python/03_stack_queue_hash_table/stack_link_stack.py:1–4 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
class
Node:
2
def
__init__(self, value):
3
self.value = value
4
self.next = None
5
6
class
Stack:
7
# 初始化空栈
Callers
1
push
Method · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected