码迷,mamicode.com
首页 > 其他好文 > 详细

第八次实验报告

时间:2019-06-14 23:36:54      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:数组的指针   please   实验室   概念   浮点型   定义函数   组元   时间   应用   

实验项目:指针实验

姓名:吕家浩   实验地点: 514物联网实验室   实验时间:2019年6月12日

实验项目

  • 指针基础及指针运算

  • 数据交换

  • 字符串反转及字符串连接

  • 数组元素奇偶排列

一、实验目的和要求

(1)掌握指针的概念和定义方法。

(2)掌握指针的操作和运算

(3)掌握指针与数组的关系

(4)掌握指针与字符串的关系

(5)熟悉指针作为函数的参数以及返回指针函数

(6)了解函数指针

二、实验内容

实验一、 8.3.1指针基础及指针运算

1、问题描述
定义一个整型指针变量p,使‘yi它指向一个整型变量a,定义一个浮点型指针q,使它指向一个浮点型变量b,同时定义另外一个整型变量c并赋值初值3 。使用指针变量,调用scanf函数分别输入a和b的值。通过指针间接访问并输出a、b的值。按16进制方式输出pq的值以及a、b的地址。将p指向c,通过p间接访问c的值并输出。输出p的值以及c的地址,并与上面的结果进行比较。
 2、实验代码

 

#include <stdio.h>
int main()
{
	int *p,a,c=3;
	float *q,b;
	p=&a;
	q=&b;
	printf("please input the value of a,b:");
	scanf("%d%f",p,q);
	printf("result:\n");
	printf("	%d,%f\n",a,b);
	printf("	%d,%f\n",*p,*q);
	printf("the adders of a,b: %p,%p\n",&a,&b);
	printf("the adders of a,b: %p,%p\n",p,q);
	p=&c;
	printf("c=%d\n ",*p);
	printf("the adders of c :%x,%x\n",p,&c);
	return 0;
}

 运行结果:

技术图片

问题分析:本题基本无问题,主要考察的就是对指针地址和变量的理解。

实验二、8.3.2数据交换

1、问题描述
定义俩个函数,分别是swap1和swap2,用于交换a,b的值。

2、实验代码

 

#include <stdio.h>
void swap1(int x,int y);
void swap2(int *x,int *y);
int main()
{
	int a,b;
	printf("please input a=:");
	scanf("%d",&a);
	printf("\n	b=");
	scanf("%d",&b);
	swap1(a,b);
	printf("\nafter call swap1:a=%d b=%d\n",a,b);
	swap2(&a,&b);
	printf("\nafter call swap2: a=%d b=%d\n",a,b);
	return 0;
}
void swap1(int x,int y)
{
	int temp;
	temp=x;
	x=y;
	y=temp;
}
void swap2(int *x,int *y)
{
	int temp;
	temp=*x;
	*x=*y;
	*y=temp;
}

 

运行结果:

技术图片

问题分析:在引用函数实参传递的时候,传递的是a,b的地址,因为只有传递地址才能交换a,b的值,所以是&a,&b,

实验三、8.3.3字符串反转字符串连接

1、问题描述
定义俩个字符指针,通过get()函数输入俩个字符串。定义一个函数charreverse(charstr),通过指针移动的方式将字符串反转。再定义一个函数charlink(charstr1,char*str2),通过指针移动方式将俩个字符串连接起来。从主函数中分别调用上述函数,输入字符marrsort(int a[],int n);

2、实验代码

#include <stdio.h>
#include <conio.h>
char *reverse(char *str);
char *link(char *str1,char *str2);
int main()
{
	char str[30],str1[30],*str2;
	printf("input reversing character string: ");
	gets(str);
	str2=reverse(str);
	printf("\noutput reversed character string: ");
	puts(str2);
	printf("input string1: ");
	gets(str);
	printf("\ninput string2: ");
	gets(str1);
	str2=link(str,str1);
	puts(str2);
	return 0;
}
char *reverse(char *str)
{
	char *p,*q,temp;
	p=str,q=str;
	while(*p!=‘\0‘)
	{
		p++;
	}
	p--;
	while(q<p)
	{
		temp=*q;
		*q=*p;
		*p=temp;
		q++;
		p--;
	}
	return str;
}
char *link(char *str1,char *str2)
{
	char *p=str1,*q=str2;
	while(*p!=‘\0‘)
	{
		p++;
	}
	while(*q!=‘\0‘)
	{
		*p=*q;
		 p++;
		 q++;
	}
	putch(‘\0‘);
	return str1;
}

  运行结果:

技术图片

问题分析:在定义第二个函数的时候,第二个函数运行的时候,第二串字符总是只会出现开头一个,后面的都没有,如“HunanU”,后来经过检查发现是定义函数的时候,写成了p++,q--,应该是写p++,q--,然后解决了问题

 

实验四、 8.3.4数组元素奇偶排列

1、问题描述
定义一个整型一维数组,任意输入数组的元素其中包含奇数和偶数,定义一个函数,实现将数组元素奇数在左、偶数在右的排列。在上述定义的函数中,不允许再增加新的数组,从主函数中分别调用上述函数,打印输出结果。

实验代码:

#include <stdio.h>
#define N 10
void arrsort(int a[N],int n);
int main()
{
	int a[N],i;
	for(i=0;i<N;i++)
	scanf("%d",&a[i]);
	arrsort(a,N);
	for(i=0;i<N;i++)
	printf("%d ",a[i]);
}
void arrsort(int a[],int n)
{
	int *p,*q,temp;
	p=a;
	q=a+n-1;
	while(p<q)
{
		    while(*p%2==1)
	    p++;
	    while(*q%2==0)
	    q--;
	if (p>q)
	    break;
	else
	temp=*p;
	*p=*q;
	*q=temp;
	p++;q--;
}
}

  运行结果:

技术图片

问题分析:本题基本无问题

三、实验小结

本次实验主要是指针内容,重点在于掌握指针的概念及应用,要理解指针的地址和变量,在对数组和字符串的顺序排列的时候,要掌握指向数组的指针变量的使用,最后在编辑代码的时候,涉及到一些算法,所以要有清晰的思路

 

 

 

 

 

第八次实验报告

标签:数组的指针   please   实验室   概念   浮点型   定义函数   组元   时间   应用   

原文地址:https://www.cnblogs.com/ljh26/p/11025886.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!