Created
March 16, 2019 01:29
-
-
Save DustinAlandzes/5b8fce661751841968602ed6a692caca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Node: | |
def __init__(self,initdata): | |
self.data = initdata | |
self.next = None | |
def getData(self): | |
return self.data | |
def getNext(self): | |
return self.next | |
def setData(self,newdata): | |
self.data = newdata | |
def setNext(self,newnext): | |
self.next = newnext | |
class UnorderedList: | |
def __init__(self): | |
self.head = None | |
def isEmpty(self): | |
return self.head == None | |
def add(self,item): | |
temp = Node(item) | |
temp.setNext(self.head) | |
self.head = temp | |
def size(self): | |
current = self.head | |
count = 0 | |
while current != None: | |
count = count + 1 | |
current = current.getNext() | |
return count | |
def search(self,item): | |
current = self.head | |
found = False | |
while current != None and not found: | |
if current.getData() == item: | |
found = True | |
else: | |
current = current.getNext() | |
return found | |
def remove(self,item): | |
current = self.head | |
previous = None | |
found = False | |
while not found: | |
if current.getData() == item: | |
found = True | |
else: | |
previous = current | |
current = current.getNext() | |
if previous == None: | |
self.head = current.getNext() | |
else: | |
previous.setNext(current.getNext()) | |
mylist = UnorderedList() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment