久久99热66热这里只有精品,特黄特色的大片在线观看,亚洲日本三级在线观看,国产三级农村妇女在线,亚洲av毛片免费在线观看,哺乳叫自慰在线看,天天干美女av网

C++面試筆試題目

時間:2024-07-16 05:01:17 資料大全 我要投稿
  • 相關推薦

C++面試筆試題目

  文件中有一組整數(shù),要求排序后輸出到另一個文件中

C++面試筆試題目

  答案:

  #i nclude

  #i nclude

  using namespace std;

  void Order(vector& data) //bubble sort

  {

  int count = data.size() ;

  int tag = false ; // 設置是否需要繼續(xù)冒泡的標志位

  for ( int i = 0 ; i < count ; i++)

  {

  for ( int j = 0 ; j < count – i – 1 ; j++)

  {

  if ( data[j] > data[j+1])

  {

  tag = true ;

  int temp = data[j] ;

  data[j] = data[j+1] ;

  data[j+1] = temp ;

  }

  }

  if ( !tag )

  break ;

  }

  }

  void main( void )

  {

  vectordata;

  ifstream in(“c:\\data.txt”);

  if ( !in)

  {

  cout<<”file error!”;

  exit(1);

  }

  int temp;

  while (!in.eof())

  {

  in>>temp;

  data.push_back(temp);

  }

  in.close(); //關閉輸入文件流

  Order(data);

  ofstream out(“c:\\result.txt”);

  if ( !out)

  {

  cout<<”file error!”;

  exit(1);

  }

  for ( i = 0 ; i < data.size() ; i++)

  out< out.close(); //關閉輸出文件流

  }

【C++面試筆試題目】相關文章:

C/C++筆試題目大全03-13

IBM筆試題目05-02

經歷的筆試題目03-13

職場經典筆試題目07-21

中信證券筆試題目10-03

Java基礎筆試題目05-25

唯品會筆試題目07-29

電信公司筆試題目類型03-13

客服專員招聘筆試題目09-29

上海博物館筆試題目10-08