-
Notifications
You must be signed in to change notification settings - Fork 269
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
Added next_permutation algorithm #405
Conversation
Codecov Report
@@ Coverage Diff @@
## master #405 +/- ##
=============================================
+ Coverage 98.583% 98.601% +0.017%
=============================================
Files 25 25
Lines 3319 3360 +41
=============================================
+ Hits 3272 3313 +41
Misses 47 47
|
output: Bool | ||
Returns `True` if the function can rearrange the given array as a | ||
lexicographically greater permutation, otherwise `False`. |
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.
It seems like the next permutation is obtained by modifying the input array i.e., instead of returning the permutation we are storing it in the input array itself. May be, we should provide a second option, in_place
(by default it should be False
). If set to True
then array
will be deep copied to a new one and that will contain the next permutation keeping the original input untouched.
Something like this,
def next_permutation(perm, in_place=False):
if not in_place:
array = ODA(int, len(perm))
for i in range(len(perm)):
array[i] = perm[i]
else:
array = perm
## Your algorithm
return array
Note that in case, in_place
is True
then array
should point to perm
and hence, modifying array
will modify the input perm
as well.
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 follow-up question:
So if in_place
is True
then instead of returning the boolean value we are returning the new permuted array (without mutating the original one) or we are returning both i.e boolean value and the permuted 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.
Or we can also remove this in_place
thing altogether and do something like this return bool, array
. If the user wants the in_place = False
result they will do
# This way the original_array will be overwritten (in_place = False)
is_permute, original_array = next_permutation(original_array)
It will give users full control if they want to overwrite or not. However, as we will always be making a deep copy of the original array so even in the case of in_place = False
it is consuming O(N)
space
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.
What's the reason behind returning a boolean? - I think it acts as a signal to the caller that the returned permutation is correct. It's a good to have return value.
From my understanding, in_place=True
means overwrite the input array and in_place=False
means do not overwrite the input array, create a new array for results instead. is_permute, original_array = next_permutation(original_array)
is overwriting the original_array
which I think is already happening in this PR. Always returning a new array is better IMO because next_permutation
itself conveys something new will be returned (it is giving us the next permutation so we may expect that our input will remain the same). A function like sort
conveys that they will sort the input array so modification of input is expected.
TLDR - Return both new array (do not modify the input array at all, create a copy and play with it) and boolean value. @pratikgl
LGTM. Please add |
I did some refactoring and added tests. Once tests pass I will merge this PR. |
Thanks @pratikgl for this. |
Closes #404
Added next_permutation algorithm which rearranges a given array as a lexicographically greater permutation
#404 Halfway done