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

วิธีลบองค์ประกอบออกจากชุดโดยส่งค่าใน C ++


ที่นี่เราจะดูวิธีการลบองค์ประกอบหนึ่งออกจากชุดโดยส่งค่าเป็นอาร์กิวเมนต์ ดังนั้น ถ้าเซตนั้นเหมือน {10, 20, 30, 50, 60, 80, 90, 100, 120, 200, 500} และเราต้องการลบ 90 มันจะเป็น:{10, 20, 30, 50, 60, 80, 100, 120, 200, 500}

ในชุดแต่ละองค์ประกอบสามารถเกิดขึ้นได้เพียงครั้งเดียวและจัดเรียง เมื่อเพิ่มค่าขององค์ประกอบแล้วจะไม่สามารถแก้ไขได้ จึงไม่เปลี่ยนแปลง แม้ว่าเราจะสามารถเพิ่มหรือลบองค์ประกอบออกจากมันได้

เราสามารถใช้วิธี Erase() เพื่อทำงานนี้ได้

ตัวอย่าง

#include<iostream>
#include<set>
using namespace std;
void dispSet(set<int> myset) {
   set<int>::iterator it;
   for (it = myset.begin(); it != myset.end(); ++it)
   cout << ' ' << *it;
   cout << '\n';
}
void deleteUsingValue(set<int> myset, int del_element) {
   cout << "Set before deletion:";
   dispSet(myset);
   myset.erase(del_element);
   cout << "Set after deleting "<< del_element<< ": ";
   dispSet(myset);
}
int main() {
   set<int> tempSet;
   int arr[] = {10, 20, 30, 50, 60, 80, 90, 100, 120, 200, 500};
   int n = sizeof(arr)/sizeof(arr[0]);
   for (int i = 0; i < n; i++)
   tempSet.insert(arr[i]);
   int del_element = 90;
   deleteUsingValue(tempSet, del_element);
}

ผลลัพธ์

Set before deletion: 10 20 30 50 60 80 90 100 120 200 500
Set after deleting 90: 10 20 30 50 60 80 100 120 200 500