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

ชุดที่สั่งและ GNU C++ PBDS


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

ชุดที่สั่งซื้อเป็นโครงสร้างตามนโยบายนอกเหนือจากที่อยู่ในไลบรารี STL ชุดที่เรียงลำดับจะเก็บองค์ประกอบทั้งหมดไว้ในลำดับการจัดเรียงและไม่อนุญาตให้มีค่าที่ซ้ำกัน

ตัวอย่าง

#include <iostream>
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
#define ordered_set tree<int, null_type,less<int>, 
rb_tree_tag,tree_order_statistics_node_update>
int main(){
   //declaring ordered set
   ordered_set o_set;
   o_set.insert(5);
   o_set.insert(1);
   o_set.insert(2);
   cout << *(o_set.find_by_order(1))
      << endl;
   cout << o_set.order_of_key(4)
      << endl;
   cout << o_set.order_of_key(5)
      << endl;
   if (o_set.find(2) != o_set.end())
      o_set.erase(o_set.find(2));
   cout << *(o_set.find_by_order(1))
      << endl;
   cout << o_set.order_of_key(4)
      << endl;
   return 0;
}

ผลลัพธ์

2
2
2
5
1