ที่นี่เราจะดูวิธีการลบองค์ประกอบสุดท้ายออกจากแผนที่ C ++ STL แผนที่เป็นประเภทข้อมูลตามตารางแฮช มีคีย์และค่า เราสามารถใช้เมธอด prev() เพื่อรับองค์ประกอบสุดท้าย และฟังก์ชัน Erase() เพื่อลบดังนี้
ตัวอย่าง
#include<iostream> #include<map> using namespace std; int main() { map<string, int> my_map; my_map["first"] = 10; my_map["second"] = 20; my_map["third"] = 30; cout << "Map elements before deleting the last element:"<<endl; for (auto it = my_map.begin(); it != my_map.end(); it++) cout << it->first << " ==> " << it->second << endl; cout << "removing the last element from the map"<<endl; my_map.erase(prev(my_map.end())); cout << "Map elements after deleting the last element :"<<endl; for (auto it = my_map.begin(); it != my_map.end(); it++) cout << it->first << " ==> " << it->second << endl; }
ผลลัพธ์
Map elements before deleting the last element: first ==> 10 second ==> 20 third ==> 30 removing the last element from the map Map elements after deleting the last element : first ==> 10 second ==> 20