ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมเพื่อค้นหาจำนวนปีที่แตกต่างกันจากสตริง
สำหรับสิ่งนี้ เราจะจัดเตรียมสตริงที่มีวันที่ในรูปแบบ 'DD-MM-YYYY' งานของเราคือการหาจำนวนปีที่แตกต่างกันที่กล่าวถึงในสตริงที่กำหนด
ตัวอย่าง
#include <bits/stdc++.h> using namespace std; //calculating the distinct years mentioned int calculateDifferentYears(string str) { unordered_set<string> differentYears; string str2 = ""; for (int i = 0; i < str.length(); i++) { if (isdigit(str[i])) { str2.push_back(str[i]); } if (str[i] == '-') { str2.clear(); } if (str2.length() == 4) { differentYears.insert(str2); str2.clear(); } } return differentYears.size(); } int main() { string sentence = "I was born on 22-12-1955." "My sister was born on 34-06-2003 and my mother on 23-03-1940."; cout << calculateDifferentYears(sentence); return 0; }
ผลลัพธ์
3