Auto commit
This commit is contained in:
parent
2c6fa871fd
commit
984e4b5848
@ -30,7 +30,18 @@ void fun(int m, int k)
|
|||||||
int index = 63;
|
int index = 63;
|
||||||
result[64] = '\0';
|
result[64] = '\0';
|
||||||
/**********Program**********/
|
/**********Program**********/
|
||||||
|
while(m>0){
|
||||||
|
if(m%k<9){
|
||||||
|
result[index--] = m%k +48;
|
||||||
|
}else{
|
||||||
|
result[index--] = m%k -10+65;
|
||||||
|
}
|
||||||
|
m/=k;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
for(;index <65;index++){
|
||||||
|
printf("%c",result[index]);
|
||||||
|
}
|
||||||
/********** End **********/
|
/********** End **********/
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,23 @@
|
|||||||
int josephus(int n)
|
int josephus(int n)
|
||||||
{
|
{
|
||||||
/**********Program**********/
|
/**********Program**********/
|
||||||
|
int a[n],i,count = 0,k=0;
|
||||||
|
i=n-1;
|
||||||
|
while(i>=0){
|
||||||
|
a[i]=1;
|
||||||
|
i--;
|
||||||
|
}
|
||||||
|
while(count<n){
|
||||||
|
if(a[i]!= 0){
|
||||||
|
k++;
|
||||||
|
if(k%3 == 0){
|
||||||
|
a[i] = 0;
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
i=(i+1)%n;
|
||||||
|
}
|
||||||
|
return i;
|
||||||
/********** End **********/
|
/********** End **********/
|
||||||
}
|
}
|
||||||
int main()
|
int main()
|
||||||
@ -25,4 +41,4 @@ int main()
|
|||||||
result = josephus(n);
|
result = josephus(n);
|
||||||
printf("最后留下的是原来第%d 号的那位\n", result);
|
printf("最后留下的是原来第%d 号的那位\n", result);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
48
万维调考试题源码/10-1.c
Normal file
48
万维调考试题源码/10-1.c
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
/*----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
请编写函数 fun, 函数的功能是: 移动一维数组中的内容; 若数组中有 n 个整数,
|
||||||
|
要求把下标从 0 到 p(含 p,p 小于等于 n-1 )的数组元素平移到数组的最后,最后
|
||||||
|
输出移动后的数组。
|
||||||
|
示例:
|
||||||
|
【请输入数组元素的个数: 】10
|
||||||
|
【请输入10 个整数:】1 2 3 4 5 6 7 8 9 10
|
||||||
|
【请输入p 的值 (p <= 9):】 5
|
||||||
|
【移动后的数组为: 】7 8 9 10 1 2 3 4 5 6
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
注意:部分源程序给出如下。请勿改动主函数 main 或其它函数中给出的内容,仅
|
||||||
|
在
|
||||||
|
Program-End 之间填入若干语句。
|
||||||
|
不要删除标志否则不得分。
|
||||||
|
不要修改或删除Program-End 之外的内容否则不得分。
|
||||||
|
----------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
void fun(int *w, int p, int n)
|
||||||
|
{
|
||||||
|
int temp[p + 1];
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
}
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int n, p;
|
||||||
|
printf("【请输入数组元素的个数: 】");
|
||||||
|
scanf("%d", &n);
|
||||||
|
int a[n];
|
||||||
|
printf("【请输入%d 个整数:】", n);
|
||||||
|
for (int i = 0; i < n; i++)
|
||||||
|
{
|
||||||
|
scanf("%d", &a[i]);
|
||||||
|
}
|
||||||
|
printf("【请输入p 的值 (p <= %d): 】", n - 1);
|
||||||
|
scanf("%d", &p);
|
||||||
|
fun(a, p, n);
|
||||||
|
printf("【移动后的数组为: 】");
|
||||||
|
for (int i = 0; i < n; i++)
|
||||||
|
{
|
||||||
|
printf("%d ", a[i]);
|
||||||
|
}
|
||||||
|
printf("\n");
|
||||||
|
return 0;
|
||||||
|
}
|
48
万维调考试题源码/10-2.c
Normal file
48
万维调考试题源码/10-2.c
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
/*----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
编写一个 C 语言程序,输入由中括号 [数字和小写字母]组成且无中括号嵌套的字
|
||||||
|
符串。规则如下:[nx](n 为正整数,x 为小写字母)表示将 x 重复 n 次;[nxy]
|
||||||
|
(n 为正整数,x、y 为小写字母)表示将 xy 重复 n 次。实现 fun 函数对输入
|
||||||
|
字符串解码并生成原始字符串。
|
||||||
|
示例1:
|
||||||
|
【请输入符合规则的字符串:】[5wh]
|
||||||
|
【原始字符串:】whwhwhwhwh
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
注意:部分源程序给出如下。请勿改动主函数 `main` 或其它函数中给出的内容,
|
||||||
|
仅在
|
||||||
|
Program-End 之间填入若干语句。
|
||||||
|
不要删除标志否则不得分。
|
||||||
|
不要修改或删除Program-End 之外的内容否则不得分。
|
||||||
|
----------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
char *fun(char input[])
|
||||||
|
{
|
||||||
|
int len = strlen(input);
|
||||||
|
char *output = (char *)malloc(1000 * sizeof(char));
|
||||||
|
if (output == NULL)
|
||||||
|
{
|
||||||
|
printf("内存分配失败!\n");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
int outputIndex = 0;
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
char input[1000];
|
||||||
|
printf("【请输入符合规则的字符串:】\n");
|
||||||
|
scanf("%s", input);
|
||||||
|
char *result = fun(input);
|
||||||
|
if (result != NULL)
|
||||||
|
{
|
||||||
|
printf("【原始字符串:】%s\n", result);
|
||||||
|
free(result);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
@ -38,6 +38,11 @@ int sum_of_even(int arr[], int size)
|
|||||||
int sum = 0;
|
int sum = 0;
|
||||||
int i;
|
int i;
|
||||||
/**********Program**********/
|
/**********Program**********/
|
||||||
|
for(i=0;i<size;i++){
|
||||||
|
if(arr[i]%2 == 0){
|
||||||
|
sum+=arr[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return sum;
|
||||||
/********** End **********/
|
/********** End **********/
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,15 @@
|
|||||||
void fun(char *a)
|
void fun(char *a)
|
||||||
{
|
{
|
||||||
/**********Program**********/
|
/**********Program**********/
|
||||||
|
char *p;
|
||||||
|
p=a;
|
||||||
|
while(*p == '*'){
|
||||||
|
p++;
|
||||||
|
}
|
||||||
|
while(*p != '\0'){
|
||||||
|
*(a++) = *(p++);
|
||||||
|
}
|
||||||
|
*a = '\0';
|
||||||
/********** End **********/
|
/********** End **********/
|
||||||
}
|
}
|
||||||
main()
|
main()
|
||||||
|
@ -33,6 +33,10 @@ int main()
|
|||||||
int isMeetCondition(int num)
|
int isMeetCondition(int num)
|
||||||
{
|
{
|
||||||
/**********Program**********/
|
/**********Program**********/
|
||||||
|
if(num%3==2&&num%5==3&&num%7==2){
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
|
||||||
/********** End **********/
|
/********** End **********/
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,16 @@ int isSubstring(char *str1, char *str2)
|
|||||||
int len2 = strlen(str2);
|
int len2 = strlen(str2);
|
||||||
int i, j;
|
int i, j;
|
||||||
/**********Program**********/
|
/**********Program**********/
|
||||||
|
for(i=0;i<len1;i++){
|
||||||
|
j=0;
|
||||||
|
while(str1[i] == str2[j] && str2[j] != '\0'){
|
||||||
|
i++;
|
||||||
|
j++;
|
||||||
|
}
|
||||||
|
if(str2[j] == '\0'){
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
/********** End **********/
|
/********** End **********/
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -20,7 +20,11 @@ int main()
|
|||||||
l = strlen(a);
|
l = strlen(a);
|
||||||
j = 0;
|
j = 0;
|
||||||
/**********Program**********/
|
/**********Program**********/
|
||||||
|
for(i=0;i<l;i++){
|
||||||
|
if(a[i]<'0'||a[i]>'9'){
|
||||||
|
b[j++] = a[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
/********** End **********/
|
/********** End **********/
|
||||||
b[j] = '\0';
|
b[j] = '\0';
|
||||||
printf("【去掉数字后的字符串为:】");
|
printf("【去掉数字后的字符串为:】");
|
||||||
|
@ -14,7 +14,13 @@ int del(int str[], int n)
|
|||||||
{
|
{
|
||||||
int i, j = 1;
|
int i, j = 1;
|
||||||
/**********Program**********/
|
/**********Program**********/
|
||||||
|
for(i=2;i<n;i++){
|
||||||
|
if(str[i] != str[j]){
|
||||||
|
str[++j] = str[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
j++;
|
||||||
|
return j;
|
||||||
/********** End **********/
|
/********** End **********/
|
||||||
}
|
}
|
||||||
int main()
|
int main()
|
||||||
|
@ -38,6 +38,11 @@ int sum_of_even(int arr[], int size)
|
|||||||
int sum = 0;
|
int sum = 0;
|
||||||
int i;
|
int i;
|
||||||
/**********Program**********/
|
/**********Program**********/
|
||||||
|
for(i=0;i<size;i++){
|
||||||
|
if(arr[i]%2==0){
|
||||||
|
sum+= arr[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return sum;
|
||||||
/********** End **********/
|
/********** End **********/
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,19 @@
|
|||||||
void fun(char *a)
|
void fun(char *a)
|
||||||
{
|
{
|
||||||
/**********Program**********/
|
/**********Program**********/
|
||||||
|
char *p,*q;
|
||||||
|
p=a;
|
||||||
|
while(*p == '*'){
|
||||||
|
p++;
|
||||||
|
}
|
||||||
|
for(q=p;q > a;q--){
|
||||||
|
p=q;
|
||||||
|
while(*p != '\0'){
|
||||||
|
*(p-1) = *p;
|
||||||
|
p++;
|
||||||
|
}
|
||||||
|
*(p-1) = '\0';
|
||||||
|
}
|
||||||
/********** End **********/
|
/********** End **********/
|
||||||
}
|
}
|
||||||
main()
|
main()
|
||||||
|
39
万维调考试题源码/5-1.c
Normal file
39
万维调考试题源码/5-1.c
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/*-----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
题目:编写函数实现输入一串字符串,删除字符串中的重复的字符,然后输出新的
|
||||||
|
字符串(重复字符保留第一次出现的字符)
|
||||||
|
输入输出如下所示
|
||||||
|
请输入一串字符串: mn,mn.,mzxcv,nkh021215468796468765465
|
||||||
|
去除重复字符后的字符串为: mn,.zxcvkh021546879
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
注意:请勿改动程序中的其他内容,请勿重新定义变量名。
|
||||||
|
------------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
void removeDuplicates(char *str);
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
char str[100];
|
||||||
|
printf("【请输入一个字符串: 】");
|
||||||
|
fgets(str, sizeof(str), stdin);
|
||||||
|
str[strcspn(str, "\n")] = 0;
|
||||||
|
removeDuplicates(str);
|
||||||
|
printf("【去除重复字符后的字符串为:】 %s\n", str);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
void removeDuplicates(char *str)
|
||||||
|
{
|
||||||
|
int seen[256] = {0};
|
||||||
|
int writeIdx = 0;
|
||||||
|
int i;
|
||||||
|
int len = strlen(str);
|
||||||
|
if (str == NULL)
|
||||||
|
return;
|
||||||
|
if (len <= 1)
|
||||||
|
return;
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
str[writeIdx] = '\0';
|
||||||
|
}
|
36
万维调考试题源码/5-2.c
Normal file
36
万维调考试题源码/5-2.c
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*-----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
题目:编写函数实现用除二取余的方法,把任意一个十进制正数的二进制序列输出
|
||||||
|
(不考虑溢出)
|
||||||
|
程序输入输出如下所示
|
||||||
|
Enter a decimal number: 2
|
||||||
|
The binary representation is: 10
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
------------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
void decimalToBinary(int decimal)
|
||||||
|
{
|
||||||
|
int remainder;
|
||||||
|
int len = 0;
|
||||||
|
char binary[32];
|
||||||
|
int i;
|
||||||
|
if (decimal == 0)
|
||||||
|
{
|
||||||
|
printf("0");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
printf("%s\n", binary);
|
||||||
|
}
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int number;
|
||||||
|
printf("【Enter a decimal number: 】");
|
||||||
|
scanf("%d", &number);
|
||||||
|
printf("【The binary representation is: 】");
|
||||||
|
decimalToBinary(number);
|
||||||
|
}
|
32
万维调考试题源码/6-1.c
Normal file
32
万维调考试题源码/6-1.c
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
/*-----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
题目:猴子第一天摘下若干个桃子,当即吃了一半,还不过瘾,又多吃了一个。第
|
||||||
|
二天早上又将剩下的桃子吃掉一半,又多吃了一个。以后每天早上都吃了前一天剩
|
||||||
|
下的一半零一个。直到最后一天早上想再吃时,见只剩下一个桃子了。通过输入来
|
||||||
|
控制吃桃的最后一天,编写函数求第一天共摘了多少桃子。
|
||||||
|
输入输出如下所示:
|
||||||
|
【输入猴子还剩1 个桃子的最后一天: 】10
|
||||||
|
猴子第一天摘了1534 个桃子
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
注意:请勿改动程序中的其他内容,请勿重新定义变量名。
|
||||||
|
------------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
int countPeaches(int lastDay)
|
||||||
|
{
|
||||||
|
int peaches = 1;
|
||||||
|
int day;
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
}
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int lastDay;
|
||||||
|
int totalPeaches;
|
||||||
|
printf("【输入猴子还剩1 个桃子的最后一天:】 ");
|
||||||
|
scanf("%d", &lastDay);
|
||||||
|
totalPeaches = countPeaches(lastDay);
|
||||||
|
printf("猴子第一天摘了%d 个桃子\n", totalPeaches);
|
||||||
|
return 0;
|
||||||
|
}
|
31
万维调考试题源码/6-2.c
Normal file
31
万维调考试题源码/6-2.c
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/*-----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
题目:一瓶汽水一元,两个空瓶子可以换一瓶汽水,输入购买汽水的金额,编写函
|
||||||
|
数计算出一共可以喝多少瓶汽水
|
||||||
|
输入输出如下所示:
|
||||||
|
【请输入购买汽水的金额(元):】 3
|
||||||
|
总共可以喝 5 瓶汽水
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
注意:请勿改动程序中的其他内容,请勿重新定义变量名。
|
||||||
|
------------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
int totalBottles(int money)
|
||||||
|
{
|
||||||
|
int totalBottlesDrank = 0;
|
||||||
|
int boughtBottles = money;
|
||||||
|
int newBottles;
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
}
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int money;
|
||||||
|
int result;
|
||||||
|
printf("【请输入购买汽水的金额(元): 】");
|
||||||
|
scanf("%d", &money);
|
||||||
|
result = totalBottles(money);
|
||||||
|
printf("总共可以喝 %d 瓶汽水\n", result);
|
||||||
|
return 0;
|
||||||
|
}
|
37
万维调考试题源码/7-1.c
Normal file
37
万维调考试题源码/7-1.c
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
/*----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
编写函数 fun, 函数 fun 的功能是:求出数组中最大数和次最大数,并把最大数
|
||||||
|
和 a[0]中的数对调、次最大数和 a[1]中的数对调,输出对调后的结果。
|
||||||
|
例如原数组为{3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5},对调后的结果为9 6 4 1 5 3 2 1 5 3 5
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
注意:部分源程序给出如下。请勿改动主函数main 或其它函数中给出的内容,仅
|
||||||
|
在
|
||||||
|
Program-End 之间填入若干语句。
|
||||||
|
不要删除标志否则不得分。
|
||||||
|
不要修改或删除Program-End 之外的内容否则不得分。
|
||||||
|
----------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
void fun(int *a, int n)
|
||||||
|
{
|
||||||
|
int max_index = 0;
|
||||||
|
int second_max_index = 0;
|
||||||
|
int i;
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
}
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int arr[] = {3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5};
|
||||||
|
int size = sizeof(arr) / sizeof(arr[0]);
|
||||||
|
int i;
|
||||||
|
fun(arr, size);
|
||||||
|
printf("【Modified array: 】");
|
||||||
|
for (i = 0; i < size; i++)
|
||||||
|
{
|
||||||
|
printf("%d ", arr[i]);
|
||||||
|
}
|
||||||
|
printf("\n");
|
||||||
|
return 0;
|
||||||
|
}
|
74
万维调考试题源码/7-2.c
Normal file
74
万维调考试题源码/7-2.c
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
/*----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
请编写C 代码,完成计算数组 A 与数组 B 的对称差集(即只属于 A 或者只属
|
||||||
|
于 B 的元素)。提示:可以先将数组 A 和 B 变为递增排序,然后可以使用双指
|
||||||
|
针法来高效地找到它们的对称差集。
|
||||||
|
示例1
|
||||||
|
【请输入数组 A 的大小: 】5
|
||||||
|
【请输入数组 A 的 5 个元素: 】6 5 4 3 2
|
||||||
|
【请输入数组 B 的大小: 】4
|
||||||
|
【请输入数组 B 的 4 个元素: 】7 6 3 8
|
||||||
|
【数组 A 与数组 B 的对称差集为: 】2 4 5 7 8
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
注意:部分源程序给出如下。请勿改动主函数main 或其它函数中给出的内容,仅
|
||||||
|
在
|
||||||
|
Program-End 之间填入若干语句。
|
||||||
|
不要删除标志否则不得分。
|
||||||
|
不要修改或删除Program-End 之外的内容否则不得分。
|
||||||
|
----------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
void bubbleSort(int arr[], int size)
|
||||||
|
{
|
||||||
|
int i, j;
|
||||||
|
for (i = 0; i < size - 1; i++)
|
||||||
|
{
|
||||||
|
for (j = 0; j < size - i - 1; j++)
|
||||||
|
{
|
||||||
|
if (arr[j] > arr[j + 1])
|
||||||
|
{
|
||||||
|
// 交换 arr[j] 和 arr[j + 1]
|
||||||
|
int temp = arr[j];
|
||||||
|
arr[j] = arr[j + 1];
|
||||||
|
arr[j + 1] = temp;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int computeSymmetricDifference(int A[], int sizeA, int B[], int sizeB, int C[])
|
||||||
|
{
|
||||||
|
int i = 0, j = 0, k = 0;
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
}
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int sizeA, sizeB;
|
||||||
|
int i;
|
||||||
|
printf("【请输入数组 A 的大小: 】");
|
||||||
|
scanf("%d", &sizeA);
|
||||||
|
int A[100];
|
||||||
|
printf("【请输入数组 A 的 %d 个元素: 】", sizeA);
|
||||||
|
for (i = 0; i < sizeA; i++)
|
||||||
|
{
|
||||||
|
scanf("%d", &A[i]);
|
||||||
|
}
|
||||||
|
printf("【请输入数组 B 的大小: 】");
|
||||||
|
scanf("%d", &sizeB);
|
||||||
|
int B[100];
|
||||||
|
printf("【请输入数组 B 的 %d 个元素: 】", sizeB);
|
||||||
|
for (i = 0; i < sizeB; i++)
|
||||||
|
{
|
||||||
|
scanf("%d", &B[i]);
|
||||||
|
}
|
||||||
|
int C[200]; // 假设结果数组最大长度为 200,为 A 和 B 长度之和
|
||||||
|
int diffSize = computeSymmetricDifference(A, sizeA, B, sizeB, C);
|
||||||
|
printf("【数组 A 与数组 B 的对称差集为: 】");
|
||||||
|
for (i = 0; i < diffSize; i++)
|
||||||
|
{
|
||||||
|
printf("%d ", C[i]);
|
||||||
|
}
|
||||||
|
printf("\n");
|
||||||
|
return 0;
|
||||||
|
}
|
29
万维调考试题源码/8-1.c
Normal file
29
万维调考试题源码/8-1.c
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
/*----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
函数 fun 的功能是: 将 输入的字符串中的字母转换为按字母序列的后续字母(但
|
||||||
|
Z 转换为 A, z 转换为 a),其它字符不变,最后输出转换后的字符串。
|
||||||
|
示例1:
|
||||||
|
【请输入一个字符串: 】12345QAZWSXrfvtgb!!@!@@¥
|
||||||
|
【转换后的字符串为: 】12345RBAXTYsgwuhc!!@!@@¥
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
----------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
void fun(char *str)
|
||||||
|
{
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
}
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
char input[100];
|
||||||
|
printf("【请输入一个字符串: 】");
|
||||||
|
fgets(input, sizeof(input), stdin);
|
||||||
|
input[strcspn(input, "\n")] = '\0';
|
||||||
|
fun(input);
|
||||||
|
printf("【转换后的字符串为: 】%s\n", input);
|
||||||
|
return 0;
|
||||||
|
}
|
38
万维调考试题源码/8-2.c
Normal file
38
万维调考试题源码/8-2.c
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
/*----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
要求编写一个程序来计算给定整数的平方根的整数部分,功能类似于 C 语言标准
|
||||||
|
库中的 sqrt 函数,但仅返回整数部分结果。
|
||||||
|
示例1:
|
||||||
|
【请输入一个非负整数: 】12
|
||||||
|
【12 的平方根的整数部分是: 】3
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
----------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
int mySqrt(int x)
|
||||||
|
{
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
}
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int num;
|
||||||
|
while (1)
|
||||||
|
{
|
||||||
|
printf("【请输入一个非负整数: 】");
|
||||||
|
if (scanf("%d", &num) != 1 || num < 0)
|
||||||
|
{
|
||||||
|
while (getchar() != '\n')
|
||||||
|
;
|
||||||
|
printf("输入无效,请输入一个非负整数。\n");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int sqrtResult = mySqrt(num);
|
||||||
|
printf("【%d 的平方根的整数部分是: 】%d\n", num, sqrtResult);
|
||||||
|
return 0;
|
||||||
|
}
|
64
万维调考试题源码/9-1.c
Normal file
64
万维调考试题源码/9-1.c
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
/*----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
编写一个 C 语言函数,函数接收一个整数数组 arr 以及数组的长度 size 作为参
|
||||||
|
数,使用 bool 类型返回该数组中是否存在重复的元素。在 main 函数中,输入多
|
||||||
|
个正整数(输入非数字字符表示输入结束)并调用该函数,根据返回结果输出相应
|
||||||
|
的提示信息。
|
||||||
|
示例:
|
||||||
|
【请输入多个整数(输入非数字字符结束输入):】1 2 3 4 5 5 6 a
|
||||||
|
数组中存在重复元素。
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
注意:部分源程序给出如下。请勿改动主函数 main 或其它函数中给出的内容,仅
|
||||||
|
在
|
||||||
|
Program-End 之间填入若干语句。
|
||||||
|
不要删除标志否则不得分。
|
||||||
|
不要修改或删除Program-End 之外的内容否则不得分。
|
||||||
|
----------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
bool hasDuplicates(int arr[], int size)
|
||||||
|
{
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
}
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int capacity = 10;
|
||||||
|
int *arr = (int *)malloc(capacity * sizeof(int));
|
||||||
|
if (arr == NULL)
|
||||||
|
{
|
||||||
|
printf("内存分配失败!\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
int size = 0;
|
||||||
|
int num;
|
||||||
|
printf("【请输入多个整数(输入非数字字符结束输入):】");
|
||||||
|
while (scanf("%d", &num) == 1)
|
||||||
|
{
|
||||||
|
if (size == capacity)
|
||||||
|
{
|
||||||
|
capacity *= 2;
|
||||||
|
arr = (int *)realloc(arr, capacity * sizeof(int));
|
||||||
|
if (arr == NULL)
|
||||||
|
{
|
||||||
|
printf("内存分配失败!\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
arr[size++] = num;
|
||||||
|
}
|
||||||
|
while (getchar() != '\n');
|
||||||
|
if (hasDuplicates(arr, size))
|
||||||
|
{
|
||||||
|
printf("数组中存在重复元素。\n");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
printf("数组中不存在重复元素。\n");
|
||||||
|
}
|
||||||
|
free(arr);
|
||||||
|
return 0;
|
||||||
|
}
|
94
万维调考试题源码/9-2.c
Normal file
94
万维调考试题源码/9-2.c
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
/*----------------------------------------------------------------------
|
||||||
|
【程序设计】
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
现在有一位赛车手要驾驶一台电动摩托车去完成多段赛程。这台电动摩托车的电
|
||||||
|
池电量存储
|
||||||
|
上限是 100 度电哦,它有一个标称的平均电耗,也就是每行驶 100 公里,就会消
|
||||||
|
耗 10 度
|
||||||
|
电。这里有个很重要的前提条件要大家牢记呀,每一段赛程的距离都是小于 600
|
||||||
|
公里的哦,
|
||||||
|
并且每次出发的时候,电动摩托车的电池都是充满电的状态呢。还有一个关键的规
|
||||||
|
则得注意
|
||||||
|
哦,如果电动摩托车到达某个地点之后,赛车手查看发现电池内剩余的电量低于电
|
||||||
|
池总电量
|
||||||
|
的 10%(也就是 100×10% = 10 度电或者更少啦),那这个时候就必须得在这个
|
||||||
|
地方给电
|
||||||
|
动摩托车充电了呢,请帮忙计算一下,这名驾驶员在赛程中的哪几段赛程前是需要
|
||||||
|
充电的。
|
||||||
|
示例1:
|
||||||
|
【请输入赛程段数:】
|
||||||
|
5
|
||||||
|
【请输入各段赛程距离,单位公里:】
|
||||||
|
380 200 390 400 300
|
||||||
|
【需要在以下几段赛程前充电:】
|
||||||
|
第 3 段赛程前
|
||||||
|
第 5 段赛程前
|
||||||
|
示例2:
|
||||||
|
【请输入赛程段数:】
|
||||||
|
4
|
||||||
|
【请输入各段赛程距离,单位公里:】
|
||||||
|
190 140 110 80
|
||||||
|
无需充电。
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
注意:部分源程序给出如下。请勿改动主函数 main 或其它函数中给出的内容,仅
|
||||||
|
在
|
||||||
|
Program-End 之间填入若干语句。
|
||||||
|
不要删除标志否则不得分。
|
||||||
|
不要修改或删除Program-End 之外的内容否则不得分。
|
||||||
|
----------------------------------------------------------------------*/
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h> // 引入stdlib.h 用于动态内存分配相关操作
|
||||||
|
#define TANK_CAPACITY 100 // 电池总容量(单位:度)
|
||||||
|
#define LOW_FUEL_LIMIT (0.10 * TANK_CAPACITY) // 低电量阈值(10%)
|
||||||
|
#define AVG_CONSUMPTION_PER_100KM 10 // 平均电耗(单位:度/百公里)
|
||||||
|
#define FUEL_CONSUMPTION_PER_KM (AVG_CONSUMPTION_PER_100KM /
|
||||||
|
100.0) // 每公里电耗(单位:度/公里)
|
||||||
|
int checkRefuelStops(int trips[], int count, int results[])
|
||||||
|
{
|
||||||
|
int refuel_count = 0;
|
||||||
|
double current_fuel = TANK_CAPACITY;
|
||||||
|
/**********Program**********/
|
||||||
|
|
||||||
|
/********** End **********/
|
||||||
|
return refuel_count;
|
||||||
|
}
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int num_trips;
|
||||||
|
printf("【请输入赛程段数:】\n");
|
||||||
|
scanf("%d", &num_trips);
|
||||||
|
int *trips = (int *)malloc(num_trips * sizeof(int));
|
||||||
|
if (trips == NULL)
|
||||||
|
{
|
||||||
|
printf("内存分配失败!\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
printf("【请输入各段赛程距离,单位公里:】\n");
|
||||||
|
for (int i = 0; i < num_trips; ++i)
|
||||||
|
{
|
||||||
|
scanf("%d", &trips[i]);
|
||||||
|
}
|
||||||
|
int *results = (int *)malloc(num_trips * sizeof(int));
|
||||||
|
if (results == NULL)
|
||||||
|
{
|
||||||
|
printf("内存分配失败!\n");
|
||||||
|
free(trips);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
int refuel_count = checkRefuelStops(trips, num_trips, results);
|
||||||
|
if (refuel_count > 0)
|
||||||
|
{
|
||||||
|
printf("【需要在以下几段赛程前充电:】\n");
|
||||||
|
for (int i = 0; i < refuel_count; i++)
|
||||||
|
{
|
||||||
|
printf("第 %d 段赛程前\n", results[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
printf("无需充电。\n");
|
||||||
|
}
|
||||||
|
free(trips);
|
||||||
|
free(results);
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user