Recent Posts
Recent Comments
Archives
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- dp
- 삼성 알고리즘
- filezila server
- 공연
- 우분투
- 시뮬레이션
- 배틀
- Algorithm
- C++
- 다이나믹 프로그래밍
- baek joon
- ubuntu
- apache
- 그래프
- 춤
- 알고리즘
- Graph
- 비주얼 스튜디오 코드
- sw expert academy
- 백준
- 동적계획법
- 아파치
- BOJ
- cube sound
- 넓이 우선 탐색
- Visual Studio Code
- simulation
- dynamic programming
- BFS
- dfs
Link
댄코 - 댄싱코딩
[C++] next_permutation 예제 본문
다음 수열을 자동으로 찾아주는 next_permutation 사용 예제이다.
사용하기 전에 배열은 정렬 되어있어야 한다.
int main(){
int arr[4] = {1,1,3,4};
while(next_permutation(arr,arr+4)){
for(int i = 0;i<4;i++)
printf("%d ",arr[i]);
printf("\n");
}
}
결과는 다음과 같다.
1 1 4 3
1 3 1 4
1 3 4 1
1 4 1 3
1 4 3 1
3 1 1 4
3 1 4 1
3 4 1 1
4 1 1 3
4 1 3 1
4 3 1 1
'코딩 > C++' 카테고리의 다른 글
[C++ 문법] string to char, char to string 변환 (0) | 2018.04.08 |
---|---|
[C++] Binary Tree 구조체 구현 예제 (0) | 2017.11.02 |
[c++] strtok 예제 (0) | 2017.10.02 |
[c++]파일 입출력 예제 (0) | 2017.10.02 |
[C++문법] list, iterator로 list에 있는 원소 출력하기 (0) | 2017.07.06 |
Comments