Skip to content
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

Next Permutation #54

Closed
Tracked by #100
fkdl0048 opened this issue Oct 4, 2024 · 0 comments
Closed
Tracked by #100

Next Permutation #54

fkdl0048 opened this issue Oct 4, 2024 · 0 comments
Assignees
Labels
Milestone

Comments

@fkdl0048
Copy link
Owner

fkdl0048 commented Oct 4, 2024

using namespace std;

class Solution {
public:
    void nextPermutation(vector<int>& nums) {
        
        next_permutation(nums.begin(), nums.end());
    }
};
  • 이렇게 간단하게 풀리긴 하지만, 실제로 문제에서 의도한 바는 next_permutation함수를 사용자 정의로 구현해봐라! 느낌이라 다시 접근
class Solution {
public:
    void nextPermutation(vector<int>& nums) {
        int n = nums.size();
        int i = n - 2;

        // Step 1: 오른쪽에서부터 첫 감소하는 위치를 찾기
        while (i >= 0 && nums[i] >= nums[i + 1]) {
            i--;
        }

        if (i >= 0) {
            // Step 2: 그 값보다 큰 값 중 가장 작은 값과 교체
            int j = n - 1;
            while (nums[j] <= nums[i]) {
                j--;
            }
            swap(nums[i], nums[j]);
        }

        // Step 3: i 이후의 배열을 오름차순으로 변경
        reverse(nums.begin() + i + 1, nums.end());
    }
};
@fkdl0048 fkdl0048 mentioned this issue Oct 4, 2024
7 tasks
@fkdl0048 fkdl0048 self-assigned this Oct 4, 2024
@fkdl0048 fkdl0048 added this to Todo Oct 4, 2024
@github-project-automation github-project-automation bot moved this to Todo in Todo Oct 4, 2024
@fkdl0048 fkdl0048 moved this from Todo to Two-Week Plan in Todo Oct 4, 2024
@fkdl0048 fkdl0048 added this to the LeetCode milestone Oct 4, 2024
@fkdl0048 fkdl0048 closed this as completed Oct 5, 2024
@github-project-automation github-project-automation bot moved this from Two-Week Plan to Done in Todo Oct 5, 2024
@fkdl0048 fkdl0048 mentioned this issue Oct 15, 2024
47 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Done
Development

No branches or pull requests

1 participant