亚洲国产日韩欧美在线a乱码,国产精品路线1路线2路线,亚洲视频一区,精品国产自,www狠狠,国产情侣激情在线视频免费看,亚洲成年网站在线观看

sony筆試題

時間:2023-02-18 08:54:25 面試筆試 我要投稿
  • 相關(guān)推薦

sony筆試題

  1. include

sony筆試題

  define n 8

  int main()

  {

  int i;

  int j;

  int k;

  (填寫) return 0;} 答:

  本帖隱藏的內(nèi)容需要回復(fù)才可以瀏覽
  2.完成程序,實現(xiàn)對數(shù)組的降序排序

  include

  void sort( );

  int main()

  { int array[]={45,56,76,234,1,34,23,2,3}; //數(shù)字任意給出

  sort( );

  return 0;

  }

  void sort( )

  {

  │ │

  │ │

  │ │

  }

  答:使用選擇排序法,我為sort函數(shù)多加了兩個形參,至少第一個是必須的,否則無法傳入待排序數(shù)組。不知道這樣做是否符合題意。

  void sort(int *array,int num)

  {

  int temp;

  for(int i=0;i

  for(int j=i+1;j

  if (array

  {

  temp=array;

  array=array[j];

  array[j]=temp;

  }

  }

  3.費(fèi)波那其數(shù)列,1,1,2,3,5……編寫程序求第十項?梢杂眠f歸,也可以用其他方法,但要說明你選擇的理由。

  include

  int pheponatch(int);

  int main()

  {

  printf("the 10th is %d",pheponatch(10));

  return 0;

  }

  int pheponatch(int n)

  {

  │ │

  │ │

  }

  答:使用遞歸,理由是遞歸編程簡單,代碼容易理解,但缺點是效率不高,而且有深度限制,如果深度太深,則堆棧會溢出。

  int pheponatch(int n)

  {

  if (n3)

  return 2;

  else if (n2||n1)

  return 1;

  else

  return pheponatch(n-1)+pheponatch(n-2);

  }

  4.下列程序運(yùn)行時會崩潰,請找出錯誤并改正,并且說明原因。

  include

  include

  typedef struct tnode

  {

  tnode* left;

  tnode* right;

  int value;

  }tnode;

  tnode* root=null;

  void append(int n);

  int main()

  {

  append(63);

  append(45);

  append(32);

  append(77);

  append(96);

  append(21);

  append(17); // again, 數(shù)字任意給出

  return 0;

  }

  void append(int n)

  {

  tnode* newnode=(tnode *)malloc(sizeof(tnode));

  newnode->value=n;

  newnode->left=null; //新增

  newnode->right=null; //新增

  if(rootnull)

  {

  root=newnode;

  return;

  }

  else

  {

  tnode* temp;

  temp=root;

  while((n>=temp->value && temp->left!=null)||(nvalue && temp->right!=null))

  {

  while(n>=temp->value && temp->left!=null)

  temp=temp->left;

  while(nvalue && temp->right!=null)

  temp=temp->right;

  }

  if(n>=temp->value)

  temp->left=newnode;

  else

  temp->right=newnode;

  return;

  }

  }

  答:因為新節(jié)點的左右指針沒有賦null值,至使下面的while循環(huán)不能正確結(jié)束而導(dǎo)致內(nèi)存越界,最后崩潰(注意結(jié)束條件是temp->left!= null或temp->right!=null)。改正就是增加兩條賦值語句,如上文紅色部分字體就是新增的兩條語句。

【sony筆試題】相關(guān)文章:

SONY邏輯筆試題07-31

Sony技術(shù)類筆試題及分析08-19

迅雷2011.10.21筆試題08-10

中興2015筆試題08-02

sony的實習(xí)面試經(jīng)驗08-08

海爾04年筆試題及答案07-31

網(wǎng)上找到的sony筆試內(nèi)容08-10

SONY 培訓(xùn)生一面08-08

交通銀行2014筆試題題目分享08-10