헤더파일 #include 사용방법 next_permutation(arr, arr+n) // 배열 next_permutation(v.begin(), v.end()) // 벡터 현재 수열을 사전 순으로 생각했을때 다음 수열을 만들고 true를 반환 만약 현재 수열이 가장 마지막이어서 다음 수열에 존재하지 않는다면 false를 반환 순열 예시 #include using namespace std; int main(void) { ios::sync_with_stdio(0); cin.tie(0); int a[3] = {1, 2, 3}; do{ for(int i=0; i