华为认证

华为C语言上机试题及答案

时间:2024-06-27 01:26:47 华为认证 我要投稿
  • 相关推荐

华为C语言上机试题及答案

  在华为认证考试之际,yjbys为大家献上的是华为C语言上机模拟试题及答案,欢迎学习!

华为C语言上机试题及答案

  给定一个数组input[] ,如果数组长度n为奇数,则将数组中最大的元素放到 output[] 数组最中间的位置,如果数组长度n为偶数,则将数组中最大的元素放到 output[] 数组中间两个位置偏右的那个位置上,然后再按从大到小的顺序,依次在第一个位置的两边,按照一左一右的顺序,依次存放剩下的数。

  例如:input[] = {3, 6, 1, 9, 7} output[] = {3, 7, 9, 6, 1}; input[] = {3, 6, 1, 9, 7, 8} output[] = {1, 6, 8, 9, 7, 3}

  题目考察的是排序+规格化输出:

  容易让人理解的解法,首先进行排序,进而进行排序后的输出:

  1 #include

  2 #include

  3 using namespace std;

  4 #define SIGN(x) ((x)>=0)?(1):(-1)

  5 #define N 5

  6 int Input[N]={3, 6, 1, 9, 7};

  7 int Output[N];

  8

  9 void formatIO(int* input,int* output,int n)

  10 {

  11 int m=(N>>1);

  12 int slid=-1;

  13 if(N&0x01==0)

  14 {

  15 m+=1;

  16 }

  17 output[m]=Input[N-1];

  18 for(int i=N-2;i>=0;i--)

  19 {

  20 output[m+slid]=input[i];

  21 if(slid>0)slid=-(slid+1);

  22 else slid=-(slid);

  23 }

  24 }

  25

  26 int main()

  27 {

  28 sort(Input,Input+N);//从小到大排序

  29 formatIO(Input,Output,N);

  30 for(int i=0;i

  31 {

  32 cout<

  33 }

  34 cout<

  35 return 1;

  36 }

【华为C语言上机试题及答案】相关文章:

计算机C语言试题及答案07-17

excel上机操作考试题「附答案」07-19

全国计算机二级c语言题库试题及答案04-07

2024年c++经典面试题及答案04-26

华为HCNA-UC V2.8模拟试题及答案07-19

2017年全国计算机c语言程序设计考试试题及答案04-05

2023计算机二级java考试上机模拟试题及答案02-03

2024年3月计算机二级c语言上机题库02-29

2016年华为HCNE解密试题07-19

国家计算机二级c语言题库及答案09-05