微軟實習生筆試題目最后一題

時間:2018-12-31 12:00:00 資料大全 我要投稿

微軟實習生筆試題目最后一題

雖然咱被微軟給鄙視了,但是回來還是寫了寫最后一題的程序,

微軟實習生筆試題目最后一題

。當時只有半個小時,可我回來晃晃悠悠地寫也寫了起碼多于1個小時……看來咱跟微軟的'要求差距還是蠻大的啊……哎……怨念……

微軟實習生筆試題目最后一題

 

// test.cpp : 定義控制臺應用程序的入口點。
//

#include "stdafx.h"

#define BUFMAX 100

//Find frequency of words of file-B.txt in file-A.txt
void Find (string &filenameA, string &filenameB)
{
 string tempA, tempB;
 char chA[BUFMAX], chB[BUFMAX];
 int cnt = 0, match = 0;
 
 if ( (filenameA.length()==0) || (filenameB.length()==0) )
 {
  cout << "Invalid input filename!" << endl;
  return ;
 }
 
 ifstream infileA ( filenameA.c_str() );
 ifstream infileB ( filenameB.c_str() );

 if ( infileA.fail() || infileB.fail() )
 {
  cout << "Cannot open input files!" << endl;
  return ;
 }

 while ( getline(infileB, tempB) )
 {
  memcpy ( chB, tempB.c_str(), tempB.length()+1 );
  cnt = 0;

  infileA.seekg (0, ios::beg);

  while ( !infileA.eof() )
  {
   infileA >> tempA;
   
   if (tempA == tempB)
    cnt++;
   else
   {
    memcpy (chA, tempA.c_str(), tempA.length()+1);

    match = 1;
    
    for (int i=0, j=0; ; i++, j++)
    {

     if (!chB[i] && !chA[j])
      break;

     else if ( !( chB[i] && chA[j] ))
     {
      match = 0;
      break;
     }

 

     if (chB[i] == '?')
      continue;

     else if (chB[i] == '*')
      for (;chA[j+1]!=chB[i+1];j++)
      {
       if (chA[j+1] == '\0')
        break;
      }

     else if (chA[j] != chB[i])
     {
      match = 0;
      break;
     }

 

    }

    if (match)
     cnt++;
   }
  }

  cout << tempB << ' ' << cnt << endl;
 }

 infileA.close();
 infileB.close();
}

int _tmain(int argc, _TCHAR* argv[])
{
 string filenameA, filenameB;
 
 cout << "Please input two files' name:" << endl;
 cin >> filenameA >> filenameB;

 Find (filenameA, filenameB);
 
 return 0;

【微軟實習生筆試題目最后一題】相關文章:

1.微軟筆試題目

2.microsoft intern微軟實習生筆試題目

3.有趣的微軟筆試題目

4.微軟實習生筆試題

5.微軟暑期實習招聘筆試題目

6.微軟求職筆試中考察的題目

7.微軟筆試經驗談和題目細析

8.微軟10道筆試面試題目