Skip to content

Latest commit

 

History

History
24 lines (12 loc) · 460 Bytes

File metadata and controls

24 lines (12 loc) · 460 Bytes

Problem 31: Next Permutation

Difficulty: Medium

Problem

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

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

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

Example

1,2,3 → 1,3,2

3,2,1 → 1,2,3

1,1,5 → 1,5,1