Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- sigmoid
- ReLU
- dfs
- BFS
- 백트래킹
- ios
- 풀이
- 그리디
- Docker
- DeepLearning
- Greedy
- 부르트포스
- 문제풀이
- NeuralNetwork
- 알고리즘
- mysql
- 탐색
- 프로그래머스
- Swift
- Algorithm
- dp
- 캡스톤정리
- Blockchain
- C++
- Node.js
- Stack
- 그래프
- 백준
- 플로이드와샬
- 실버쥐
Archives
- Today
- Total
개발아 담하자
[Algorithm/C++] next_permutation, prev_permutation 사용해 순열 구하기 본문
🌟 자료구조+알고리즘
[Algorithm/C++] next_permutation, prev_permutation 사용해 순열 구하기
choidam 2021. 1. 28. 20:19C++ 에서 next_permutation 혹은 prev_permutaion 함수를 통해 순열을 구할 수 있습니다.
#include <algorithm>
먼저 위와 같이 algorithm 헤더 파일을 추가해야 합니다.
Next_permutation()
현재 나와 있는 수열에서 인자로 넘어간 범위에 해당하는 다음 순열 을 구하고 true를 반환합니다. 다음 순열이 없다면 (다음에 나온 순열이 순서상 이전 순열보다 작다면) false를 반환합니다.
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
vector<int> v = {1,2,3,4}
do{
for(int i=0; i<4; i++){
cout << v[i] << " ";
}
cout << '\n';
}while(next_permutation(v.begin(),v.end()));
return 0;
}
1 2 3 4
1 2 4 3
1 3 2 4
...
4 2 3 1
4 3 1 2
4 3 2 1
prev_permutation()
현재 나와 있는 수열에서 인자로 넘어간 범위에 해당하는 이전 순열 을 구하고 true를 반환합니다. 이전 순열이 없다면 (다음에 나온 순열이 순서상 이전 순열보다 크다면) false를 반환합니다.
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
vector<int> v = {1,2,3,4}
do{
for(int i=0; i<4; i++){
cout << v[i] << " ";
}
cout << '\n';
}while(prev_permutation(v.begin(),v.end()));
return 0;
}
4 3 2 1
4 3 1 2
4 2 3 1
...
1 3 2 4
1 2 4 3
1 2 3 4
참고하면 좋은 응용 알고리즘 문제
1. 백준 2529번 - 부등호 silver-g-0114.tistory.com/128
2. 백준 1399 번 - 단어 수학 silver-g-0114.tistory.com/129
'🌟 자료구조+알고리즘' 카테고리의 다른 글
[Algorithm/C++] 튜플(Tuple) 사용하기 (0) | 2021.02.15 |
---|---|
[Algorithm/C++] 비트마스크 (BitMask) 란? (0) | 2021.02.04 |
[Algorithm] Dynamic Programming (동적계획법) 이란? (0) | 2021.01.27 |
[Algorithm] 유전 알고리즘이란? (Genetic Algorithm) (0) | 2020.06.08 |
[Algorithm] 그리디 알고리즘이란? (활동 선택 문제, 분할 가능 배낭 문제) (0) | 2020.03.30 |