fork download
  1. #include <unordered_set>
  2.  
  3. struct Node
  4. {
  5. int data;
  6. Node* next;
  7. };
  8.  
  9. int main()
  10. {
  11. std::unordered_set<Node*> h;
  12. Node headB;
  13. std::unordered_set <Node*>::iterator got = h.find (&headB);
  14. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Standard output is empty