C++/STL
C++ 동일 원소 포함 여부 확인 is_permutation
1. is_permutation Permutation이란 순열이라는 뜻으로 이전 순열을 구하기 위하여 next_permutation을 사용하였었다. C++ 순열(Permutation) - next_permutation 1. 순열(Permutation) 순열은 순서에 상관있게 값들을 나열하는 것을 의미한다. C++ 에서는 algorithm 라이브러리의 next_permutation을 사용한다면 간단하게 구해낼 수 있다. next_permutation은 인자로 반복.. notepad96.tistory.com 마찬가지로 is_permutation도 algorithm 라이브러리의 포함되어 있으며 순열인지를 검사하는 것이다. 순열인지 검사를 한다는 것은 단지 순서만 바뀐 동일한 구성인지 즉, 동일한 원소들을 포함..