или сам этот объект?
class Box:
def __init__ (self,cat = None):
self.cat = cat
self.nextcat = None
class LinkedList:
def __init__(self):
self.head = None
def addToEnd(self, newcat):
newbox = Box(newcat)
if self.head is None:
self.head = newbox
return
lastbox = self.head
while (lastbox.nextcat):
lastbox = lastbox.nextcat
lastbox.nextcat = newbox
test = LinkedList()
test.addToEnd(1)
test.addToEnd(2)
test.addToEnd(3)
test.addToEnd(4)
в питоне переменные в принципе содержат только ссылки
Обсуждают сегодня