Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maple - Rhyannon Rodriguez #72

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
146 changes: 112 additions & 34 deletions linked_list/linked_list.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Defines a node in the singly linked list
class Node:

Expand All @@ -13,83 +12,161 @@ def __init__(self):

# returns the value in the first node
# returns None if the list is empty
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: Linear O(N), size of LL

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⏱ Time complexity would actually be O(1) here, because you only ever need to look at the head of the list.

# Space Complexity: Constant O(1)
def get_first(self):
pass
if self.head is None:
return None

return self.head.value


# method to add a new node with the specific data value in the linked list
# insert the new node at the beginning of the linked list
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: Adding a head, Constant O(1)
# Space Complexity: Constant O(1) not creating new data structure
def add_first(self, value):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pass
# new_node = Node(value)
# new_node.next = self.head
# self.head = new_node

self.head = Node(value, self.head)

# method to find if the linked list contains a node with specified value
# returns true if found, false otherwise
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: Linear O(N), size of the LL
# Space Complexity: Constant O(1), we're not creating data structures
def search(self, value):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pass
current = self.head

while current:
if current.value == value:
return True
current = current.next

return False

# method that returns the length of the singly linked list
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: Linear O(N), size of the LL
# Space Complexity: Constant O(1), we're not creating data structures
def length(self):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pass
count = 0
current = self.head
while current:
count += 1
current = current.next

return count

# method that returns the value at a given index in the linked list
# index count starts at 0
# returns None if there are fewer nodes in the linked list than the index value
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: Linear O(N), size of the LL
# Space Complexity: Constant O(1), we're not creating data structures
def get_at_index(self, index):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pass
if index < 0:
return None

current_index = 0
current = self.head

while current is not None and current_index < index:
current = current.next
current_index += 1

if current is None:
return None

return current.value

# method that returns the value of the last node in the linked list
# returns None if the linked list is empty
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: Linear O(N), size of the LL
# Space Complexity: Constant O(1), we're not creating data structures
def get_last(self):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pass
if not self.head:
return None

current = self.head
while current.next:
current = current.next

return current.value

# method that inserts a given value as a new last node in the linked list
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: Linear O(N), size of the LL
# Space Complexity: Constant O(1), we're not creating data structures
def add_last(self, value):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pass
if not self.head:
self.add_first(value)
else:
new_node = Node(value)
current = self.head
while current.next:
current = current.next
current.next = new_node

# method to return the max value in the linked list
# returns the data value and not the node
def find_max(self):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pass
if self.head == None:
return None

current = self.head
max = self.head.value
while current:
if current.value > max:
max = current.value
current = current.next

return max

# method to delete the first node found with specified value
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: Linear O(N), size of the LL
# Space Complexity: Constant O(1), we're not creating data structures
def delete(self, value):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pass
if not self.head:
return -1
elif self.head.value == value:
self.head = self.head.next
return True
else:
current = self.head
while current.next and current.next.value != value:
current = current.next
current.next = current.next.next

# method to print all the values in the linked list
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: Linear O(N), size of the LL
# Space Complexity: Linear O(N), depending on the size of the visited_list
def visit(self):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

helper_list = []
visited_list = []
current = self.head

while current:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

helper_list.append(str(current.value))
visited_list.append(str(current.value))
current = current.next

print(", ".join(helper_list))
print(", ".join(visited_list))

# method to reverse the singly linked list
# note: the nodes should be moved and not just the values in the nodes
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: Linear O(N), depending on the size of the LL
# Space Complexity: Constant O(1), no creation of new data structures
def reverse(self):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pass
if not self.head:
return -1

current = self.head
previous = None

while current:
next = current.next
current.next = previous
previous = current
current = next

self.head = previous

## Advanced/ Exercises
# returns the value at the middle element in the singly linked list
Expand Down Expand Up @@ -126,3 +203,4 @@ def create_cycle(self):
current = current.next

current.next = self.head # make the last node link to first node