Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

จะสร้าง unordered_set ของคลาสหรือ struct ที่ผู้ใช้กำหนดใน C ++ ได้อย่างไร


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมเพื่อทำความเข้าใจวิธีสร้างชุดคลาสหรือโครงสร้างที่ผู้ใช้กำหนดแบบไม่เรียงลำดับใน C++

สำหรับสิ่งนี้ เราจะสร้างประเภทโครงสร้างแล้วเปรียบเทียบโครงสร้างสองประเภทกับฟังก์ชันที่กำหนดโดยผู้ใช้เพื่อเก็บฟังก์ชันแฮช

ตัวอย่าง

#include <bits/stdc++.h>
using namespace std;
//defined structure
struct Test {
   int id;
   bool operator==(const Test& t) const{
      return (this->id == t.id);
   }
};
//defined class for hash function
class MyHashFunction {
   public:
      size_t operator()(const Test& t) const{
         return t.id;
   }
};
int main(){
   Test t1 = { 110 }, t2 = { 102 }, t3 = { 101 }, t4 = { 115 };
   //defining unordered set
   unordered_set<Test, MyHashFunction> us;
   us.insert(t1);
   us.insert(t2);
   us.insert(t3);
   us.insert(t4);
   for (auto e : us) {
      cout << e.id << " ";
   }
   return 0;
}

ผลลัพธ์

115 101 110 102