यह ट्यूटोरियल चर्चा करेगा कि कैसे हैश मैप से एक प्रविष्टि को हटाने के लिए कुंजी का उपयोग करके इसके माध्यम से जाना जाता है। उदाहरण के लिए,
Input: HashMap: { 1: “Tutorials”, 2: “Tutorials”, 3: “Point” }, key=1 Output: HashMap: { 2: “Tutorials”, 3: “Point” }. Explanation: The first element is removed using key ‘1’. Input: HashMap: { 1: “God”, 2: “is”, 3: “Great” }, key=2 Output: HashMap: { 1: “God”, 3: “Great” }.
समाधान खोजने के लिए दृष्टिकोण
C++ में, हम कुंजी का उपयोग करके प्रविष्टियों को हटाने के लिए .erase() फ़ंक्शन में कुंजी नाम का उपयोग कर सकते हैं। लेकिन यहां, हमें इस पर पुनरावृति करते हुए इसे हटाने की आवश्यकता है, इसलिए हमें एक पुनरावर्तक की भी आवश्यकता है।
यहां हम हैशमैप के माध्यम से पुनरावृति करेंगे और जांचेंगे कि क्या प्रत्येक कुंजी को हटा दिया गया है और जब कुंजी मेल खाती है तो प्रविष्टि को हटा दें।
उदाहरण
उपरोक्त दृष्टिकोण के लिए C++ कोड
पुनरावृत्ति के बिना
नीचे हैश मैप पर पुनरावृति किए बिना तत्वों को हटाने का कोड दिया गया है।
#include<iostream> #include<map> // for map operations using namespace std; int main(){ // Creating HashMap. map< int, string > mp; // Inserting key-value pair in Hashmap. mp[1]="Tutorials"; mp[2]="Tutorials"; mp[3]="Point"; int key = 2; // Creating iterator. map<int, string>::iterator it ; // Printing the initial Hashmap. cout<< "HashMap before Deletion:\n"; for (it = mp.begin(); it!=mp.end(); ++it) cout << it->first << "->" << it->second << endl; mp.erase(key); // Printing Hashmap after deletion. cout<< "HashMap After Deletion:\n"; for (it = mp.begin(); it!=mp.end(); ++it) cout << it->first << "->" << it->second << endl; return 0; }
आउटपुट
HashMap before Deletion: 1->Tutorials 2->Tutorials 3->Point HashMap After Deletion: 1->Tutorials 3->Point
उदाहरण
हैश मैप पर पुनरावृति करते हुए तत्व निकालें
#include<iostream> #include<map> // for map operations using namespace std; int main(){ // Creating HashMap. map< int, string > mp; // Inserting key-value pair in Hashmap. mp[1]="Tutorials"; mp[2]="Tutorials"; mp[3]="Point"; int key = 2; // Creating iterator. map<int, string>::iterator it ; // Printing the initial Hashmap. cout<< "HashMap before Deletion:\n"; for (it = mp.begin(); it!=mp.end(); ++it) cout << it->first << "->" << it->second << endl; // Iterating over HashMap. for (it = mp.begin(); it!=mp.end(); ++it){ int a=it->first; // Checking iterator key with required key. if(a==key){ // erasing Element. mp.erase(it); } } // Printing Hashmap after deletion. cout<< "HashMap After Deletion:\n"; for (it = mp.begin(); it!=mp.end(); ++it) cout << it->first << "->" << it->second << endl; return 0; }
आउटपुट
HashMap before Deletion: 1->Tutorials 2->Tutorials 3->Point HashMap After Deletion: 1->Tutorials 3->Point
निष्कर्ष
इस ट्यूटोरियल में, हमने चर्चा की कि हाशप से एक प्रविष्टि को कैसे हटाया जाए। हमने एक प्रविष्टि को हटाने के दो तरीकों पर चर्चा की, जो उस पर पुनरावृति कर रहे हैं और उस पर पुनरावृति किए बिना। हमने इस समस्या के लिए C++ प्रोग्राम पर भी चर्चा की जिसे हम प्रोग्रामिंग भाषाओं जैसे C, Java, Python, आदि के साथ कर सकते हैं। हमें उम्मीद है कि आपको यह ट्यूटोरियल मददगार लगेगा।