1、选秀节目打分,分为专家评委和大众评委,score[] 数组里面存储每个评委打的分数,judge_type[] 里存储与 score[] 数组对应的评委类别,judge_type[i] == 1,表示专家评委,judge_type[i] == 2,表示大众评委,n表示评委总数。打分规则如下:专家评委和大众评委的分数先分别取一个平均分(平均分取整),然后,总分 = 专家评委平均分 * 0.6 + 大众评委 * 0.4,总分取整。如果没有大众评委,则 总分 = 专家评委平均分,总分取整。函数最终返回选手得分。
函数接口 int cal_score(int score[], int judge_type[], int n)
转载请标明出处,原文地址:http://blog.csdn.net/hackbuteer1/article/details/11161557
2、给定一个数组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}
函数接口 void sort(int input[[, int n, int output[])
转载请标明出处,原文地址:http://blog.csdn.net/hackbuteer1/article/details/11161557
3、操作系统任务调度问题。操作系统任务分为系统任务和用户任务两种。其中,系统任务的优先级 < 50,用户任务的优先级 >= 50且 <= 255。优先级大于255的为非法任务,应予以剔除。现有一任务队列task[],长度为n,task中的元素值表示任务的优先级,数值越小,优先级越高。函数scheduler实现如下功能,将task[] 中的任务按照系统任务、用户任务依次存放到 system_task[] 数组和 user_task[] 数组中(数组中元素的值是任务在task[] 数组中的下标),并且优先级高的任务排在前面,优先级相同的任务按照入队顺序排列(即先入队的任务排在前面),数组元素为-1表示结束。
例如:task[] = {0, 30, 155, 1, 80, 300, 170, 40, 99} system_task[] = {0, 3, 1, 7, -1} user_task[] = {4, 8, 2, 6, -1}
函数接口 void scheduler(int task[], int n, int system_task[], int user_task[])
转载请标明出处,原文地址:http://blog.csdn.net/hackbuteer1/article/details/11161557
函数接口 int cal_score(int score[], int judge_type[], int n)
转载请标明出处,原文地址:http://blog.csdn.net/hackbuteer1/article/details/11161557
- int cal_score(int score[], int judge_type[], int n)
- {
- int i , TotalExpertScore , TotalPublictScore , ExpertNum , PublicNum;
- double res = 0;
- TotalExpertScore = TotalPublictScore = 0;
- ExpertNum = PublicNum = 0;
- for(i = 0 ; i < n ; ++i)
- {
- if(1 == judge_type[i]) //专家评委
- {
- TotalExpertScore += score[i];
- ++ExpertNum;
- }
- else //大众评委
- {
- TotalPublictScore += score[i];
- ++PublicNum;
- }
- }
- if(0 == PublicNum) //没有大众评委
- {
- return TotalExpertScore/ExpertNum;
- }
- else
- {
- res = 0.6*TotalExpertScore/ExpertNum + 0.4*TotalPublictScore/PublicNum;
- return (int)res;
- }
- }
例如: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}
函数接口 void sort(int input[[, int n, int output[])
转载请标明出处,原文地址:http://blog.csdn.net/hackbuteer1/article/details/11161557
- void sort(int input[] , int n , int output[])
- {
- int i , j , k , temp , mid;
- for(i = 0 ; i < n - 1 ; ++i) //冒泡排序(降序)
- {
- for(j = 0 ; j < n - i - 1 ; ++j)
- {
- if(input[j] < input[j+1])
- {
- temp = input[j];
- input[j] = input[j+1];
- input[j+1] = temp;
- }
- }
- }//for
- mid = n>>1;
- j = mid - 1;
- k = mid + 1;
- output[mid] = input[0];
- for(i = 1 ; i < n ; ) //按照一左一右的顺序
- {
- if(j >= 0)
- output[j--] = input[i++];
- if(k < n)
- output[k++] = input[i++];
- }
- }
例如:task[] = {0, 30, 155, 1, 80, 300, 170, 40, 99} system_task[] = {0, 3, 1, 7, -1} user_task[] = {4, 8, 2, 6, -1}
函数接口 void scheduler(int task[], int n, int system_task[], int user_task[])
转载请标明出处,原文地址:http://blog.csdn.net/hackbuteer1/article/details/11161557
- void scheduler(int task[] , int n , int system_task[] , int user_task[])
- {
- int i , j , k , index_user , index_system , temp;
- j = k = 0;
- index_user = index_system = 0;
- for(i = 0 ; i < n ; ++i)
- {
- if(task[i] > 255)
- {
- printf("This is illegal task!\n");
- }
- else if(task[i] >= 50 && task[i] <= 255) //用户任务
- {
- user_task[index_user++] = i; //存储用户任务的下标
- }
- else //系统任务
- {
- system_task[index_system++] = i; //存储系统任务的下标
- }
- }//for
- //对每个类型组中的任务进行优先级排序
- for(i = 0 ; i < index_user - 1 ; ++i) //冒泡排序
- {
- for(j = 0 ; j < index_user - i - 1 ; ++j)
- {
- if( task[user_task[j]] > task[user_task[j+1]] )
- {
- temp = user_task[j];
- user_task[j] = user_task[j+1];
- user_task[j+1] = temp;
- }
- }
- }//for
- if(index_user < n)
- user_task[index_user] = -1;
- for(i = 0 ; i < index_system - 1 ; ++i) //冒泡排序
- {
- for(j = 0 ; j < index_system - i - 1 ; ++j)
- {
- if( task[system_task[j]] > task[system_task[j+1]] )
- {
- temp = system_task[j];
- system_task[j] = system_task[j+1];
- system_task[j+1] = temp;
- }
- }
- }//for
- if(index_system < n)
- system_task[index_system] = -1;
- }