Advertisement
Guest User

Untitled

a guest
May 3rd, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. int main()
  2. {
  3. struct hi
  4. {
  5. bool operator () (double & a, double & b) const
  6. {
  7. return a > b;
  8. }
  9. };
  10. priority_queue < double, vector<double>, hi > q;
  11. //... other operations.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement