sort를 사용할 때 하나의 조건으로 정렬하다가 같은 값이 나오는 값들에 대해 새로운 조건을 사용해 정렬할 수 있을까요?
예를 들어,
struct Info { int a; int b; };
아시는 분 도움주시면 감사하겠습니다. ^^
값을 비교하는 function object을 만들어서 sort에 세번째 인자로 넘겨주면 됩니다.
간단한 방법은
struct Info { int a; int b; bool operator<(const Info& rhs) const; { return a < rhs.a || !(rhs.a < a) && b < rhs.b; } };
더 간단한 방법은 :-)
typedef pair<int, int> Info;
문제를 잘 못 읽어서 삭제했읍니다. __________________________________ Less is More (Robert Browning)
___________________________________ Less is More (Robert Browning)
텍스트 포맷에 대한 자세한 정보
<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]
값을 비교하는 function
값을 비교하는 function object을 만들어서 sort에 세번째 인자로 넘겨주면 됩니다.
간단한 방법은 struct
간단한 방법은
더 간단한 방법은 :-)
문제를 잘 못 읽어서
문제를 잘 못 읽어서 삭제했읍니다.
__________________________________
Less is More (Robert Browning)
___________________________________
Less is More (Robert Browning)
댓글 달기