-
Notifications
You must be signed in to change notification settings - Fork 87
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
Kayla - Linked Lists #56
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🌸 Most of your implementation was quite solid, Kayla! However, your implementation missed updating the attributes your Node
class had to accommodate a doubly linked list. Additionally, as only one time and space complexity question was filled out, I will be marking this as a yellow. Let me know what questions you have!
🟡
|
||
# Defines the singly linked list | ||
class LinkedList: | ||
def __init__(self): | ||
self.head = None # keep the head private. Not accessible outside this class | ||
self.head = None # keep the head private. Not accessible outside this class | ||
self.tail = None | ||
|
||
# returns the value in the first node | ||
# returns None if the list is empty | ||
# Time Complexity: ? | ||
# Space Complexity: ? | ||
def get_first(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✨ Your implementation is solid, but time and space complexity?
|
||
# Defines the singly linked list | ||
class LinkedList: | ||
def __init__(self): | ||
self.head = None # keep the head private. Not accessible outside this class | ||
self.head = None # keep the head private. Not accessible outside this class | ||
self.tail = None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😎 Ooh doubly linked list!
if self.head is None: | ||
self.head = self.tail = Node(value) | ||
else: | ||
new_Node = Node(value, self.head) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remember our Python style conventions!
new_Node = Node(value, self.head) | |
new_node = Node(value, self.head) | |
# Defines a node in the singly linked list | ||
class Node: | ||
|
||
def __init__(self, value, next_node = None): | ||
def __init__(self, value, next_Node = None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With Python Pep8 style conventions, we'd like our variables to be all lowercase. You also use previous in your methods below, but no attribute previous exists.
def __init__(self, value, next_Node = None): | |
def __init__(self, value, next_node = None, previous_node = None): | |
self.value = value | ||
self.next = next_node | ||
self.next = next_Node |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.next = next_Node | |
self.next = next_node | |
self.previous = previous_node | |
current = current.next | ||
return None | ||
|
||
|
||
|
||
# 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: ? | ||
def get_last(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✨ Time and space complexity?
if self.tail is None: | ||
return None | ||
|
||
return self.tail.value | ||
|
||
# method that inserts a given value as a new last node in the linked list | ||
# Time Complexity: ? | ||
# Space Complexity: ? | ||
def add_last(self, value): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✨ Time and space complexity?
new_Node.previous = self.tail | ||
self.tail.next = new_Node | ||
self.tail = new_Node | ||
|
||
|
||
# method to return the max value in the linked list | ||
# returns the data value and not the node | ||
def find_max(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✨
max_value = current.value | ||
current = current.next | ||
return max_value | ||
|
||
|
||
# method to delete the first node found with specified value | ||
# Time Complexity: ? | ||
# Space Complexity: ? | ||
def delete(self, value): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✨ Time and space complexity?
# Time Complexity: ? | ||
# Space Complexity: ? | ||
# Time Complexity: O(n) | ||
# Space Complexity: O(1) | ||
def reverse(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✨
No description provided.