Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++의 문자열에서 고유한 총 연도 찾기


이 자습서에서는 문자열에서 고유한 연도의 총수를 찾는 프로그램에 대해 설명합니다.

이를 위해 '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