이전 정리글은 2021.12.26 - [프로그래밍/Parallel Programming] - 병렬 프로그래밍 Parallel Programming - parallel_invoke 자. 오늘은 병렬 방식을 이용한 정렬 함수에 대해 알아보자. 첫번째로 알아볼 함수는 parallel_sort 함수이다. 해당 함수는 std::sort 함수의 다중 프로세스 버전이라고 생각하면 될 것 같다. 자 코드를 보자구~!! #include #include #include using namespace std; int _tmain() { vector vecIntegers(100000); generate(begin(vecIntegers), end(vecIntegers), mt19937(79)); concurrency::paral..