-
Notifications
You must be signed in to change notification settings - Fork 49
Leaves - Dominique #25
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,4 +1,4 @@ | ||||||
|
||||||
require 'pry' | ||||||
# Defines a node in the singly linked list | ||||||
class Node | ||||||
attr_reader :data # allow external entities to read value but not write | ||||||
|
@@ -19,54 +19,154 @@ def initialize | |||||
# 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 | ||||||
def add_first(value) | ||||||
raise NotImplementedError | ||||||
new_node = Node.new(value) | ||||||
|
||||||
new_node.next = @head | ||||||
|
||||||
@head = new_node | ||||||
# head is not a node, it is just a variable that refers to the first node | ||||||
end | ||||||
|
||||||
# method to find if the linked list contains a node with specified value | ||||||
# returns true if found, false otherwise | ||||||
def search(value) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||||||
raise NotImplementedError | ||||||
current = @head | ||||||
|
||||||
until current == nil | ||||||
return true if current.data == value | ||||||
current = current.next | ||||||
end | ||||||
|
||||||
return false | ||||||
end | ||||||
|
||||||
# method to return the max value in the linked list | ||||||
# returns the data value and not the node | ||||||
def find_max | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||||||
raise NotImplementedError | ||||||
return nil if @head == nil | ||||||
|
||||||
current = @head | ||||||
max = current.data | ||||||
|
||||||
|
||||||
until current == nil | ||||||
max = current.data if current.data > max | ||||||
current = current.next | ||||||
end | ||||||
|
||||||
return max | ||||||
end | ||||||
|
||||||
# method to return the min value in the linked list | ||||||
# returns the data value and not the node | ||||||
def find_min | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||||||
raise NotImplementedError | ||||||
end | ||||||
return nil if @head == nil | ||||||
|
||||||
current = @head | ||||||
min = current.data | ||||||
|
||||||
|
||||||
until current == nil | ||||||
min = current.data if current.data < min | ||||||
current = current.next | ||||||
end | ||||||
|
||||||
return min | ||||||
end | ||||||
|
||||||
# method that returns the length of the singly linked list | ||||||
def length | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||||||
raise NotImplementedError | ||||||
return 0 if @head == nil | ||||||
|
||||||
length = 0 | ||||||
current = @head | ||||||
# current | ||||||
|
||||||
until current == nil | ||||||
length += 1 | ||||||
current = current.next | ||||||
end | ||||||
|
||||||
return length | ||||||
end | ||||||
|
||||||
# method that returns the value at a given index in the linked list | ||||||
# index count starts at 0 | ||||||
# returns nil if there are fewer nodes in the linked list than the index value | ||||||
def get_at_index(index) | ||||||
raise NotImplementedError | ||||||
|
||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
current = @head | ||||||
value = '' | ||||||
|
||||||
return current.data if index == 0 | ||||||
|
||||||
new_index = index + 1 | ||||||
|
||||||
new_index.times do |count| | ||||||
return nil if current == nil | ||||||
value = current.data | ||||||
current = current.next | ||||||
end | ||||||
|
||||||
return value | ||||||
end | ||||||
|
||||||
# method to print all the values in the linked list | ||||||
def visit | ||||||
raise NotImplementedError | ||||||
linked_list_array = [] | ||||||
|
||||||
current = @head | ||||||
|
||||||
until current == nil | ||||||
linked_list_array.push(current.data) | ||||||
current = current.next | ||||||
end | ||||||
|
||||||
return linked_list_array | ||||||
end | ||||||
|
||||||
# method to delete the first node found with specified value | ||||||
def delete(value) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||
raise NotImplementedError | ||||||
|
||||||
|
||||||
return nil if @head == nil | ||||||
|
||||||
current = @head | ||||||
|
||||||
if current.data == value | ||||||
@head = current.next | ||||||
return | ||||||
end | ||||||
|
||||||
until current == nil | ||||||
if current.next.data == value | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
current.next == current.next.next | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Small bug here
Suggested change
|
||||||
return | ||||||
end | ||||||
|
||||||
current = current.next | ||||||
end | ||||||
|
||||||
return | ||||||
end | ||||||
|
||||||
# method to reverse the singly linked list | ||||||
# note: the nodes should be moved and not just the values in the nodes | ||||||
def reverse | ||||||
raise NotImplementedError | ||||||
return if @head.nil? | ||||||
|
||||||
current = @head | ||||||
previous = nil | ||||||
|
||||||
until current.next.nil? | ||||||
temp = current.next | ||||||
current.next = previous | ||||||
previous = current | ||||||
current = temp | ||||||
end | ||||||
|
||||||
current.next = previous | ||||||
@head = current | ||||||
end | ||||||
|
||||||
|
||||||
|
@@ -94,18 +194,39 @@ def has_cycle | |||||
# returns the value in the first node | ||||||
# returns nil if the list is empty | ||||||
def get_first | ||||||
raise NotImplementedError | ||||||
return nil if @head == nil | ||||||
|
||||||
return @head.data | ||||||
end | ||||||
|
||||||
# method that inserts a given value as a new last node in the linked list | ||||||
def add_last(value) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||||||
raise NotImplementedError | ||||||
|
||||||
new_node = Node.new(value) | ||||||
|
||||||
if @head.nil? | ||||||
add_first(value) | ||||||
else | ||||||
current = @head | ||||||
while current.next != nil | ||||||
current = current.next | ||||||
end | ||||||
current.next = new_node | ||||||
end | ||||||
end | ||||||
|
||||||
# method that returns the value of the last node in the linked list | ||||||
# returns nil if the linked list is empty | ||||||
def get_last | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||||||
raise NotImplementedError | ||||||
return nil if @head.nil? | ||||||
|
||||||
current = @head | ||||||
|
||||||
while current.next != nil | ||||||
current = current.next | ||||||
end | ||||||
|
||||||
return current.data | ||||||
end | ||||||
|
||||||
# method to insert a new node with specific data value, assuming the linked | ||||||
|
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.
👍