MCPcopy Create free account
hub / github.com/Jack-Lee-Hiter/AlgorithmsByPython / __init__

Method __init__

Lists.py:25–26  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

23# 定义一个无序链表
24class UnorderedList:
25 def __init__(self):
26 self.head = None
27
28 def isEmpty(self):
29 return self.head == None

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected