我想用Python實現一個簡單的Python堆棧。我想知道如果有人能讓我知道我的代碼有什麼問題。用Python實現堆棧
class myStack:
def __init__(self):
self = []
def isEmpty(self):
return self == []
def push(self, item):
self.append(item)
def pop(self):
return self.pop(0)
def size(self):
return len(self)
s = myStack()
s.push('1')
s.push('2')
print(s.pop())
print s
http://docs.python.org/2/tutorial/datastructures。html#使用列表作爲堆棧 –
即使您的代碼設法將您的對象變爲列表,這是否意味着您將釋放所有自定義方法? –
它應該只是pop()不彈出(0)。 pop(0)使它成爲隊列。 – Aravind