template ForwardIterator remove(ForwardIterator first, ForwardIterator last, const T& val); template ForwardIt remove_if( ForwardIt first, ForwardIt last, UnaryPredicate p ); - remove : 범위(first~last)내에서 val과 일치하는 원소를 제거한 범위로 변환 - remove_if : 범위(first~last)내에서 조건 p를 만족하는 원소를 제거한 범위로 변환. -> 이 함수는 실제 원소를 제거하는 것이 아닌 지워야 하는 원소들을 컨테이너 맨 뒤로 보내버린다. ** 이때 이 두 함수는..