标签:cts 处理 amp inf name 表示 维数 == 选择
Part 1
二分查找:查找数据项
// 练习:使用二分查找,在一组有序元素中查找数据项 // 形参是数组,实参是数组名 #include <stdio.h> const int N=5; int binarySearch(int x[], int n, int item); int main() { int a[N]={3,12,56,63,90}; int i,index, key; printf("数组a中的数据:\n"); for(i=0;i<N;i++) printf("%d ",a[i]); printf("\n"); printf("输入待查找的数据项: "); scanf("%d", &key); index= binarySearch(a,N,key); // 调用函数binarySearch()在数组a中查找指定数据项item,并返回查找结果给index // 补足代码① // ××× if(index>=0) printf("%d在数组中,下标为%d\n", key, index); else printf("%d不在数组中\n", key); return 0; } //函数功能描述: //使用二分查找算法在数组x中查找特定值item,数组x大小为n // 如果找到,返回其下标 // 如果没找到,返回-1 int binarySearch(int x[], int n, int item) { int low, high, mid; low = 0; high = n-1; while(low <= high) { mid = (low+high)/2; if (item == x[mid]) return mid; else if(item < x[mid]) high = mid - 1; else low = mid + 1; } return -1; }
运行结果如下:
当变为指针变量时:
// 练习:使用二分查找,在一组有序元素中查找数据项 // 形参是指针变量,实参是数组名 #include <stdio.h> const int N=5; int binarySearch(int *x, int n, int item); int main() { int a[N]={9,11,23,66,99}; int i,index, key; printf("数组a中的数据:\n"); for(i=0;i<N;i++) printf("%d ",a[i]); printf("\n"); printf("输入待查找的数据项: "); scanf("%d", &key); index= binarySearch(a,N,key); // 调用函数binarySearch()在数组a中查找指定数据项item,并返回查找结果 // 补足代码① // ××× if(index>=0) printf("%d在数组中,下标为%d\n", key, index); else printf("%d不在数组中\n", key); return 0; } //函数功能描述: //使用二分查找算法在x指向的数据项开始的n个数据中,查找item // 如果找到,返回其位置 // 如果没找到,返回-1 int binarySearch(int *x, int n, int item) { int low, high, mid; low = 0; high = n-1; while(low <= high) { mid = (low+high)/2; if (item == *(x+mid)) return mid; else if(item < *(x+mid)) high = mid - 1; else low = mid + 1; } return -1; }
运行结果如下:
Part 2 选择排序法
按字典排序:
// 练习:使用选择法对字符串按字典序排序 #include <stdio.h> #include <string.h> void selectSort(char str[][20], int n ); // 函数声明,形参str是二维数组名 int main() { char name[][20] = {"Beautiful", "Elegant", "Shy", "Love", "Admire"}; int i; printf("输出初始名单:\n"); for(i=0; i<5; i++) printf("%s\n", name[i]); selectSort(name, 5); // 调用选择法对name数组中的字符串排序 printf("按字典序输出名单:\n"); for(i=0; i<5; i++) printf("%s\n", name[i]); return 0; } // 函数定义 // 函数功能描述:使用选择法对二维数组str中的n个字符串按字典序排序 void selectSort(char str[][20], int n) { int i,j,k; char temp[20]; for(i=0;i<n-1;i++){ k=i; for(j=i+1;j<n;j++) if(strcmp(str[j],str[k])<0) k=j; if(k!=i){ strcpy(temp,str[i]); strcpy(str[i],str[k]); strcpy(str[k],temp);} } // 补足代码 // ××× }
实验总结与体会:
1.数组名作为参数 vs. 指针变量作为参数:
形参 实参 (都指函数后面的括号里的)
数组的写法: 例: int fun(int x[], int n) fun(a, N) a为数组名
指针的写法; 例: void swap (int *p,int *q) swap(p,q)
数组元素表示的差异
当为一维数组时 假设 int a[9] ;int *p=a;
数组元素表示的方法:a[i]; p[i]; *(a+i ) ; *(p+i);
当为二维数组时
数组元素表示的方法:a[i][j]; *(a[i]+j); *(p[i]+j); *(*(a+i)+j);
2. 在运用选择排序对字符串进行排序时要注意:字符串比较不能直接进行比较,要借助strcmp函数,交换时借助strcpy函数;还要注意二维数组作为实参,形参时的写法;
3.当使用指针对字符串进行处理时要注意:特别要注意末尾要添加"\0",这个很重要,还有进行相加减的是地址,并不是地址所对应的元素。
实验踩得坑还比较多,刚开始连比较字符串大小的函数就没想起来,还有在二维数组作为实参那想了好久,看实验3时也花费了很长时间,还是继续努力吧。
标签:cts 处理 amp inf name 表示 维数 == 选择
原文地址:https://www.cnblogs.com/xinzhi999/p/10919021.html