中文国产日韩欧美视频,午夜精品999,色综合天天综合网国产成人网,色综合视频一区二区观看,国产高清在线精品,伊人色播,色综合久久天天综合观看

C++面試筆試題目

時(shí)間:2024-07-16 05:01:17 資料大全 我要投稿
  • 相關(guān)推薦

C++面試筆試題目

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

C++面試筆試題目

  答案:

  #i nclude

  #i nclude

  using namespace std;

  void Order(vector& data) //bubble sort

  {

  int count = data.size() ;

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

  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(); //關(guān)閉輸入文件流

  Order(data);

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

  if ( !out)

  {

  cout<<”file error!”;

  exit(1);

  }

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

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

  }

【C++面試筆試題目】相關(guān)文章:

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

IBM筆試題目05-02

經(jīng)歷的筆試題目03-13

職場(chǎng)經(jīng)典筆試題目07-21

中信證券筆試題目10-03

Java基礎(chǔ)筆試題目05-25

唯品會(huì)筆試題目07-29

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

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

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