[알고리즘] sort with STL, c++ 람다함수
1. 구조체를 활용한 Sort 기본적인 sort 보통 우리가 기본적으로 사용하던 sort는 2개의 인자를 사용했지만, 사실은 마지막에는 classfunction 의 자리이고, 디폴트 값으로 less 가 숨어있어 일반적인 sort(A.begin(), A.end()); 의 형식으로 사용 시 오름차순으로 정렬해주었던것이다. sort(A.begin(), A.end(), classfunction); 뜯어보면 sort(A.begin(), A.end(), less); //오름차순 sort(A.begin(), A.end(), greater); //내림차순 코드로 이해해보자! #struct+person.cpp #include "stdio.h" #include #include #include using namespace ..
2019.08.31