-
Notifications
You must be signed in to change notification settings - Fork 2
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
PR #6 #6
base: master
Are you sure you want to change the base?
PR #6 #6
Conversation
while other_index < array.length | ||
if array[index] > array[other_index] | ||
temp = array[index] | ||
array[index] = array[other_index] |
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.
Consider renaming. Index / Other_index can get a little confusing.
@@ -0,0 +1,25 @@ | |||
|
|||
def sort(array) | |||
if array == nil || array.length <= 1 |
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.
nice base case!
if array[index] > array[other_index] | ||
temp = array[index] | ||
array[index] = array[other_index] | ||
array[other_index] = temp | ||
swapped = true |
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.
great use of temp variable here
array[index] = array[other_index] | ||
array[other_index] = temp | ||
swapped = true | ||
end |
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.
This is a bit confusing here, could we add some clarifying comments?
other_index = index + 1 | ||
while other_index < array.length | ||
if array[index] > array[other_index] | ||
temp = array[index] |
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.
Consider using a more descriptive variable name than "temp"
|
||
def sort(array) | ||
if array == nil || array.length <= 1 | ||
return array # nothing to sort |
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.
should it return nil if there is no array?
index = 0 | ||
swapped = true | ||
while index < array.length && swapped | ||
swapped = false | ||
other_index = index + 1 | ||
while other_index < array.length | ||
if array[index] > array[other_index] | ||
temp = array[index] | ||
array[index] = array[other_index] | ||
array[other_index] = temp | ||
swapped = true | ||
end | ||
other_index += 1 | ||
end | ||
index += 1 | ||
end |
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.
Bubble sort? A few comments might be helpful for those of us who don't understand what this is doing at first glance.
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.
i agree
swapped = true | ||
while index < array.length && swapped | ||
swapped = false | ||
other_index = index + 1 |
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.
maybe since it's the next index the variable should be called next_index instead of other_index
array[index] = array[other_index] | ||
array[other_index] = temp | ||
swapped = true | ||
end |
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.
maybe parallel assignment would make this more readable instead of using temp
@@ -0,0 +1,25 @@ | |||
|
|||
def sort(array) |
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.
a comment describing the sorting algorithm could be helpful for comprehension
other_index = index + 1 | ||
while other_index < array.length | ||
if array[index] > array[other_index] | ||
temp = array[index] |
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.
Can you rename temp
to a more descriptive variable?
This method sorts an array