c++實現輸入一組字串,找出字串中最大最小和統計相同字串出現次數

calven_2521發表於2020-04-04

/************************************************************************/
/* 2011年4月7日10:39:34
   目的:用c++實現輸入一組字串,找出字串中最大最小和統計相同字串出現次數

   這個自己寫的演算法夠杯具的!唉 不行啊 繼續努力!
   改進了下 減少不少程式碼!
*/
/************************************************************************/
#include <iostream>
#include <string>
#include <vector>
using namespace std;

int main()
{
 string  str;
 char maxStr[20];
 char minStr[20];
 vector<string> strVec;
 cout<<"請輸入一組字串(以Ctrl+Z結束):"<<endl;
 
 cin.clear();
 cin.sync();
 while(cin>>str)
 {
  strVec.push_back(str);
 }

 //利用氣泡排序將字串長度最大放到第一個,然後輸出
 strcpy_s(maxStr,strVec[0].c_str());
 //利用氣泡排序將字串長度最小放到第一個,然後輸出
 strcpy_s(minStr,strVec[0].c_str());
 for (vector<string>::size_type i = 1;i < strVec.size();++i)
 {
  //if (strcmp(maxStr,strVec[i].c_str()) < 0)//字串大小比較
  if(strlen(maxStr) < strlen(strVec[i].c_str()))//字串長度大小比較
  {
   strcpy_s(maxStr, strVec[i].c_str());
  }

  //if (strcmp(minStr,strVec[i].c_str()) > 0)//字串大小比較
  if(strlen(minStr) > strlen(strVec[i].c_str()))//字串長度大小比較
  {
   strcpy_s(minStr,strVec[i].c_str());
  }
 }
 //統計相同字串出現的次數
    for (vector<string>::size_type i = 0;i < strVec.size();++i)
    {
  int Index = 0;
  for(vector<string>::size_type j = 0;j < strVec.size();++j)
  {
   if (strVec[i] == strVec[j] )
   {
    strcpy_s(sameStr,strVec[j].c_str());
    ++Index;
   }
  }
  cout<<Index<<endl;
    }

 cout<<"the Max string is "<<maxStr<<endl;
 cout<<"the Min string is "<<minStr<<endl;

 system("pause");
 return 0;
}

相關文章