Skip to content

Paper - Malakhova K. #56

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

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
122 changes: 92 additions & 30 deletions linked_list/linked_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,80 +16,142 @@ def __init__(self):
# Time Complexity: ?
# Space Complexity: ?
def get_first(self):
Comment on lines 16 to 18

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

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: O(1)
# Space Complexity: O(1)
def add_first(self, value):
Comment on lines +27 to 29

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
Comment on lines +30 to +32

Choose a reason for hiding this comment

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

Can be simplified a bit.

Suggested change
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: O(n)
# Space Complexity: O(1)
def search(self, value):
Comment on lines +36 to 38

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 != None:
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: O(n)
# Space Complexity: O(1)
def length(self):
Comment on lines +47 to 49

Choose a reason for hiding this comment

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

👍

pass
counter = 0
current = self.head
while current != None:
current = current.next
counter += 1
return counter

# 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: O(n)
# Space Complexity: O(1)
def get_at_index(self, index):
Comment on lines +60 to 62

Choose a reason for hiding this comment

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

👍

pass
if self.length() < index:
return None
current = self.head
current_index = 0
while current != None:
if current_index == index:
return current.value
current = current.next
current_index += 1

# 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: O(n)
# Space Complexity: O(1)
def get_last(self):
Comment on lines +75 to 77

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
while current.next != None:
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: O(n)
# Space Complexity: O(1)
def add_last(self, value):
Comment on lines +86 to 88

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)
if self.head == None:
self.head = new_node
return
current = self.head
while current.next != None:
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
max_value = self.head.value
current = self.head.next
while current != None:
if max_value < current.value:
max_value = current.value
current = current.next
return max_value

# method to delete the first node found with specified value
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: O(1)
# Space Complexity: O(n)
def delete(self, value):
Comment on lines +112 to 114

Choose a reason for hiding this comment

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

👍

pass
curr = self.head
prev = None
if curr == None:
return None
while curr:
if curr.value == value:
# if not head of list
if prev:
prev.next = curr.next
else:
self.head = curr.next
prev = curr
curr = curr.next

# method to print all the values in the linked list
# Time Complexity: ?
# Space Complexity: ?
# Time Complexity: O(n)
# Space Complexity: O(n)
def visit(self):
Comment on lines +130 to 132

Choose a reason for hiding this comment

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

👍

helper_list = []
current = self.head

while current:
helper_list.append(str(current.value))
current = current.next

print(", ".join(helper_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: O(n)
# Space Complexity: O(1)
def reverse(self):
Comment on lines +142 to 144

Choose a reason for hiding this comment

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

👍

pass
prev = None
current = self.head
next = None

while current != None:
next = current.next
current.next = prev
prev = current
current = next
self.head = prev

## Advanced/ Exercises
# returns the value at the middle element in the singly linked list
Expand Down