Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@
* [Test Find Sum Of Three](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/two_pointers/find_sum_of_three/test_find_sum_of_three.py)
* Merge Sorted Arrays
* [Test Merge Sorted Arrays](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/two_pointers/merge_sorted_arrays/test_merge_sorted_arrays.py)
* Next Permutation
* [Test Next Permutation](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/two_pointers/next_permutation/test_next_permutation.py)
* Pair With Sum In Array
* [Test Pair With Sum In Array](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/two_pointers/pair_with_sum_in_array/test_pair_with_sum_in_array.py)
* Reverse Array
Expand Down Expand Up @@ -596,8 +598,6 @@
* [Test Make Spiral](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/matrix_in_spiral_form/test_make_spiral.py)
* Minimize The Absolute Difference
* [Test Minimize Absolute Difference](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/minimize_the_absolute_difference/test_minimize_absolute_difference.py)
* Next Permutation
* [Test Next Permutation](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/next_permutation/test_next_permutation.py)
* Permutations Check
* [Test Check](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/permutations_check/test_check.py)
* Prefix Sum
Expand Down
97 changes: 97 additions & 0 deletions algorithms/two_pointers/next_permutation/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
# Next Permutation

Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.

If such an arrangement is not possible, it must rearrange it as the lowest possible order (i.e., sorted in ascending
order).

The replacement must be in place and use only constant extra memory.

## Constraints

- 1 <= `nums.length` <= 100
- 0 <= `nums[i]` <= 100


```
Example 1:

Input: nums = [1,2,3]
Output: [1,3,2]
```

```
Example 2:

Input: nums = [3,2,1]
Output: [1,2,3]
```

```
Example 3:

Input: nums = [1,1,5]
Output: [1,5,1]
```

```
Example 4:

Input: nums = [1]
Output: [1]
```

## Solution

The problem asks us to find the next permutation of a given array of numbers. This is the next “dictionary order”
(lexicographical) arrangement of the same numbers. We can solve this problem using a two pointers (or more accurately,
a “two-index”) approach, as it allows us to efficiently find the two critical positions in the array that need to be
changed.

We use one pointer (or index) to find the “pivot” element we need to increase, and a second pointer to find the
“successor” element to swap it with. This targeted, two-index approach enables us to perform the minimal change required,
which is crucial for finding the next permutation and satisfying the in-place, constant-memory constraints. To find the
next smallest permutation that is larger than the current one, we need to make the smallest possible increase. This is
done by modifying the “least significant” part of the array (the right-hand side) first. To do this, we make the
smallest possible increase to the number, working from right to left:

1. **Find the pivot**: We scan from the right to find the first element (pivot) that is smaller than its right neighbor.
This is the element we will increase.

2. **Find the successor**: We scan from the right again to find the smallest element (successor) that is larger than the
pivot.

3. **Swap**: We swap the pivot and the successor.

4. **Reverse the suffix**: We reverse the part of the array to the right of the pivot’s original position. This ensures
the new suffix is in its smallest possible order (ascending). This single reverse operation also cleverly handles
both possible scenarios:
- **Case 1 (pivot is found)**: The suffix (from i+1 onward) was previously in descending order. Reversing it sorts it
into ascending order. This makes the new permutation as small as possible, ensuring it’s the immediate next one.
- **Case 2 (no pivot is found)**: If the array were already in its largest order (e.g., [3,2,1]), the first loop
would finish with i=−1. This final step will then reverse from i+1 (which is index 0) to the end, correctly
transforming the entire array into its smallest possible order (e.g., .[1,2,3]).

Here’s a step-by-step breakdown of the code:

1. We initialize an index i to the second last element of nums.
2. Next, we iterate backward starting from i to find the “pivot”. This is the rightmost element that can be changed to
increase the permutation’s size.
3. Then, we check if a pivot is actually found (i.e., i is greater than or equal to 0).
- If a pivot is found, we initialize a second index, j, to the last element of nums.
- Then, we iterate backward from j to find the “successor”. This is the smallest possible number in the suffix that
we can swap with the pivot.
- Once the “successor” is found, we swap the pivot nums[i] with its successor nums[j]. This guarantees the new
permutation is larger than the original.
4. Finally, we reverse the portion of the array that comes after the pivot’s original index i (i.e., from index i + 1
to the end).

### Time Complexity

The time complexity of this solution is O(n), because in the worst-case scenario, we perform a single pass to find the
pivot, another single pass to find the element to swap, and a final pass to reverse a part of the array.

### Space Complexity

The solution’s space complexity is O(1), as the permutation is done in-place, and only a constant amount of extra memory
is used for variables.
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,28 @@ def next_permutation(nums: List[int]) -> None:
"""
Does not return anything, modifies nums in-place instead.
"""
# Start from the second last index (since we'll compare with the next element)
i = len(nums) - 2

# Step 1: Find the first decreasing element from the end
# This identifies the pivot point where the sequence stops increasing
while i >= 0 and nums[i + 1] <= nums[i]:
i -= 1

# Step 2: If such an element is found, find the next greater element to swap with
if i >= 0:
j = len(nums) - 1

# Move from the end to find the first element greater than nums[i]
while nums[j] <= nums[i]:
j -= 1

# Swap the pivot with the next greater element
swap(nums, i, j)
# Step 3: Reverse the suffix starting at i + 1 to get the smallest lexicographical order
reverse(nums, i + 1)


# Helper function to reverse a portion of the list
def reverse(nums: List[int], start: int) -> None:
i = start
j = len(nums) - 1
Expand All @@ -30,6 +37,7 @@ def reverse(nums: List[int], start: int) -> None:
j -= 1


# Helper function to swap two elements in the list
def swap(nums: List[int], i: int, j: int) -> None:
temp = nums[i]
nums[i] = nums[j]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from puzzles.next_permutation import next_permutation
from algorithms.two_pointers.next_permutation import next_permutation


class NextPermutationTestCase(unittest.TestCase):
Expand Down
36 changes: 0 additions & 36 deletions puzzles/next_permutation/README.md

This file was deleted.