实验五

实验5 数组和指针
实验结论
  • Part1 验证性实验

      int a[2][3];

      int (*q)[3];

      int *p;
      p = a[0];
      q = a; 
 
以下能够正确表示数组元素a[1][2]地址的有?
A. &a[1][2]
B. a[0] + 5
C. p + 5
D. *q + 5
E. *(q+1) + 2
F. &a[0][0] + 1*3 + 2
G. a[0] + 1*3 + 2
 
答:A、B、C、D、E、F、G.
 
  • Part2 综合编程应用
2-1 二分查找算法及编程应用
问题描述
设N个整数有序(由小到大)存放在一维数组中。
编写函数binarySearch(),实现使用二分查找算法在一维数组中查找特定整数item。如果找到,返回item在数组
元素中的下标;如果item不在数组中,则返回-1。
// 练习:使用二分查找,在一组有序元素中查找数据项
//  形参是数组,实参是数组名 
#include  
#include  
const int N=5;

int binarySearch(int x[], int n, int item); // 函数声明 

int main() {
    int a[N]={2,7,19,45,66};
    int i,index, key;
    
    printf("数组a中的数据:\n");
    for(i=0;i)
       printf("%d ",a[i]);
    printf("\n");
    
    printf("输入待查找的数据项: ");
    scanf("%d", &key);
    
    // 调用函数binarySearch()在数组a中查找指定数据项item,并返回查找结果给index 
    // 补足代码① 
    index=binarySearch(a,N,key); 
    
    if(index>=0) 
        printf("%d在数组中,下标为%d\n", key, index);
    else
        printf("%d不在数组中\n", key); 
   
   system("pause");
   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;
}

实验五_第1张图片

实验五_第2张图片

实现方式2:形参是指针变量,实参是数组名,使用指针间接访问方式处理输出元素
程序源码文件ex2_1_2.cpp
/*
N个字典序的整数已放在一维数组中,给定下列程序中,函数fun的功能是: 
利用折半查找算法查找整数m在数组中的位置。
若找到,则返回其下标值;反之,则返回-1
*/ 

#include  
#include  
#define  N  10
int fun(int *a,int m)
{ 
    int low = 0, high = N-1, mid;
    /*************ERROR**************/
      while(low < =high)
      {  
        mid = (low+high)/2;
        /*************ERROR**************/
        if(m < *(a+mid))
             high = mid-1;
        /*************ERROR**************/
        else if(m >*(a+mid))
            low = mid+1;
        else  
            return(mid);
      }
      return(-1);
}

int main()
{  
    int i,a[N]={-3,4,7,9,13,24,67,89,100,180},k,m;
       printf("a数组中的数据如下:\n");
       for(i=0;i)
       printf("%d ",a[i]);
       printf("\nEnter m: \n"); 
       scanf("%d",&m);
    /*************ERROR**************/
       k = fun(a,m);
       if (k>=0) 
       printf("m=%d,index=%d\n",m,k);
       else 
       printf("Not be found!\n");
    
    system("pause");
       return 0;
}

实验五_第3张图片

实验五_第4张图片

2-2 选择排序算法及编程应用
// 练习:使用选择法对字符串按字典序排序
#include 
#include <string.h>
#include  
void selectSort(char str[][20], int n ); // 函数声明,形参str是二维数组名 
int main() {
    char name[][20] = {"John", "Alex", "Joseph", "Taylor", "George"};
    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]);
    
    system("pause");
    return 0;
} 

// 函数定义
// 函数功能描述:使用选择法对二维数组str中的n个字符串按字典序排序 
void selectSort(char str[][20], int n) {
    // 补足代码
    // ×××
    char a[20];
    int i,j,k;
    for(i=0;i1;i++){
        k=i;
        for(j=i+1;j)
        if(strcmp(str[j],str[k])<0)
        k=j;
        if(k!=i) {
        strcpy(a,str[i]);
        strcpy(str[i],str[k]);
        strcpy(str[k],a);
        }
    }
}

实验五_第5张图片

 

2-3 用指针处理字符串
/*
假定输入的字符串中只包含字母和*号。
编写函数,实现:
除了字符串前导的*号之外,将串中其他*号全部删除。

在编写函数时,不得使用C语言提供的字符串函数。 
例如,若字符串中的内容为****A*BC*DEF*G*******
删除后,字符串中的内容则应当是****ABCDEFG
*/

#include <string.h>
#include 
#include 
void  fun(char *a) {
    /*****ERROR********/
    int i=0; 
    char *p = a;
    /****ERROR***/
    while(*p && *p == '*') { 
        a[i] = *p;
        i++;
        p++; 
    } 
    while(*p) { 
    /******ERROR*******/
        if(*p!= '*')  { 
            a[i] = *p;
            i++; 
        } 
        p++; 
    }
    /******ERROR*******/
    a[i] = '\0'; 
  
}

int main() {
      char s[81];
      printf("Enter a string :\n");
      gets(s);
      /***ERROR******/
      fun(s);
      printf("The string after deleted:\n");
      puts(s);
      
      system("pause");
    return 0; 
}

实验五_第6张图片

改错2
假定输入的字符串中只包含字母和*,例如字符串****A*BC*DEF*G*******。编写子函数实现除了前导*和尾
部*之外,删除中间出现的所有*。即删除后,字符串内容应当是****ABCDEFG*******
/*
假定输入的字符串中只包含字母和*号。
编写函数,实现:
除了字符串前导和尾部的*号之外,将串中其他*号全部删除。

在编写函数时,不得使用C语言提供的字符串函数。 
例如,若字符串中的内容为****A*BC*DEF*G*******
删除后,字符串中的内容则应当是****ABCDEFG******
*/

#include 
#include 
#include <string.h>
void fun(char *a) {
    /**ERROR******/
    int i=0;
    char *t = a, *f = a;
    char *q = a;
     
    while(*t)
        t++;
    t--;
    
    while(*t == '*')
        t--;
        
    while(*f == '*')
        f++;
    /***ERROR***/
    while (q<f) { 
        a[i] = *q;
        q++;
        i++; 
    } 
    while (q<t) {
        /***ERROR**/
        if(*q != '*') { 
            a[i] = *q;
            i++; 
        } 
        q++; 
    } 
    
    while (*q) { 
        a[i] = *q;
        i++;
        q++; 
    } 
    /**ERROR**/
    a[i]='\0';
}
int main () {
    char s[81];
    printf("Entre a string:\n");
    gets(s);
    /**ERROR**/
    fun(s);
    printf("The sting after deleted:\n");
    puts(s);
    
    system("pause");
    return 0;
}

实验五_第7张图片

实验总结与体会

1.我觉得看完第一部分的验证性试验后对于数组地址的表示比之前理解一些,选择提示根据自己的理解写的,不知道对不对。

2.指针与二维数组真的是太绕了,过程中一直翻书,不能很好的理解。

3.2-2第一个实验中未看到提示用字符串处理导致出错。

4.最后两个实验的算法不是特别清晰,参考了别的同学并根据运行错误的地方改正。

 

 

 

 

 

 

 

 

 

 

 

 
 
 
 
 
 
 
 

你可能感兴趣的:(实验五)