std::multimap<int, Obj> multimap_A; std::vector<Obj> vector_Obj; for( itr = multimap_A.begin() ; itr != multimap_A.end() ; ++itr ) vector_Obj.insert( itr->second );
일 때, vector_Obj 를 multimap_A의 key 값으로 정렬해 줄 방법이 있는지요?
http://www.sgi.com/tech/stl/Multimap.html
에 보면
Multimap is a !! Sorted !! Associative Container that associates objects of type Key with objects of type Data.
라고 써있습니다. 즉, 올리신 코드 그대로하면 정렬된 상태로 vector 에 들어갑니다. 뭔가 다른 것을 바라신 것인지..?
텍스트 포맷에 대한 자세한 정보
<code>
<blockcode>
<apache>
<applescript>
<autoconf>
<awk>
<bash>
<c>
<cpp>
<css>
<diff>
<drupal5>
<drupal6>
<gdb>
<html>
<html5>
<java>
<javascript>
<ldif>
<lua>
<make>
<mysql>
<perl>
<perl6>
<php>
<pgsql>
<proftpd>
<python>
<reg>
<spec>
<ruby>
<foo>
[foo]
http://www.sgi.com/tech/stl/M
http://www.sgi.com/tech/stl/Multimap.html
에 보면
Multimap is a !! Sorted !! Associative Container that associates objects of type Key with objects of type Data.
라고 써있습니다. 즉, 올리신 코드 그대로하면 정렬된 상태로 vector 에 들어갑니다. 뭔가 다른 것을 바라신 것인지..?
댓글 달기