1. struct Node {  
  2.     int d, e;  
  3.     bool operator < (const Node x) const {  
  4.         return x.d < d;  
  5.     }  
  6.     Node(int d, int e):d(d), e(e){}  
  7. }; 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2021-11-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-21
  • 2021-06-11
  • 2021-11-19
  • 2021-11-08
  • 2022-12-23
  • 2021-10-22
  • 2021-06-12
相关资源
相似解决方案