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

ค้นหาและพิมพ์คำที่ซ้ำกันใน std::vector โดยใช้ฟังก์ชัน STL โดยใช้ C++


พิจารณาว่าเรามีรายการสตริง รายการมีสตริงที่ซ้ำกัน เราต้องตรวจสอบว่าสตริงใดเกิดขึ้นมากกว่าหนึ่งครั้ง สมมติว่ารายการสตริงเป็นเหมือน ["Hello", "Kite", "Hello", "C++", "Tom", "C++"]

เราจะใช้เทคนิคการแฮช ดังนั้นให้สร้างตารางแฮชที่ว่างเปล่า จากนั้นข้ามแต่ละสตริง และสำหรับแต่ละสตริง มี s อยู่ในแฮชแล้ว จากนั้นแสดงสตริง มิฉะนั้นจะแทรกลงในแฮช

ตัวอย่าง

#include<iostream>
#include<vector>
#include<unordered_set>
using namespace std;
void displayDupliateStrings(vector<string> strings) {
   unordered_set<string> s;
   bool hasDuplicate = false;
   for (int i = 0; i<strings.size(); i++) {
      if (s.find(strings[i]) != s.end()) {
         cout << strings[i] << endl;
         hasDuplicate = true;
      }
      else
         s.insert(strings[i]);
   }
   if (!hasDuplicate)
      cout << "No Duplicate string has found" << endl;
}
int main() {
   vector<string>strings{"Hello", "Kite", "Hello", "C++", "Tom", "C++"};
   displayDupliateStrings(strings);
}

ผลลัพธ์

Hello
C++