gpt4 book ai didi

c - 在作为指针传递的结构中使用 strcmp()

转载 作者:太空狗 更新时间:2023-10-29 16:10:02 24 4
gpt4 key购买 nike

我有一堆关于结构的练习题,所有都涉及作为函数参数指针传递的结构。现在,我手头有一个具体问题,要求我在电话簿结构中存储一些姓名和电话号码。内容如下:

Write a C program that implements the following two functions. The function readin() reads a number of persons’ names and their corresponding telephone numbers, passes the data to the caller via the parameter p, and returns the number of names that have entered. The character # is used to indicate the end of user input. The function search() finds the telephone number of an input name target, and then prints the name and telephone number on the screen. If the input name cannot be found, then it will print an appropriate error message. The prototypes of the two functions are given below:

 int readin(PhoneBk *p);
void search(PhoneBk *p, int size, char *target);

PhoneBk 的结构定义如下:

typedef struct {
char name[20];
char telno[20];
} PhoneBk;

程序模板如下:

#include <stdio.h>
#include <string.h>

#define MAX 100

typedef struct {
char name[20];
char telno[20];
} PhoneBk;

int readin(PhoneBk *p);
void search(PhoneBk *p, int size, char *target);

int main() {
PhoneBk s[MAX];
char t[20];
int size;

size = readin(s);
printf("Enter search name: \n");

gets(t);
search(s, size, t);

return 0;
}

int readin(PhoneBk *p) {
/* Write your program code here */
}

void search(PhoneBk *p, int size, char *target) {
/* Write your program code here */
}

我必须在我的程序中比较字符串两次:第一次,检查是否输入了 # 作为名称(在这种情况下,我希望程序直接跳转到搜索功能不问电话号码);第二,如果目标名称与其中一个电话簿结构中的名称匹配。

现在我完全不理解结构被声明为数组但作为指针传递的概念,所以我认为获取下一条记录的用户输入的方法是递增指针变量 (这里是 p)。对于 get-the-records-until-#-is-entered 函数,我写了这个(使用 strcmp):

int readin(PhoneBk *p) {
strcpy(p->name, "Test"); //To guarantee a character that is not #.
while (strcmp(p->name, "#") != 0) {
printf("Enter person name, # to stop.\n");
scanf("%s", p->name);
printf("Enter the telephone number.\n");
scanf("%s", p->telno);
p++;
}
return p;
}

我的意图是将 p->name 类型转换为字符串,以便 strcmp() 可以处理它。但是反复显示警告:

warning: cast from pointer to integer of different size
warning: passing argument 1 of strcmp() makes pointer from integer without a cast

这个错误已经在论坛上讨论过很多次(我搜索过),但我所看到的对这种结构和 strcmp() 的组合没有任何帮助。

我完全放弃了strcmp(),为了第二个功能,如果找到目标名字就显示一个人的记录,所以我用循环直接比较字符串.

void search(PhoneBk *p, int size, char *target) {
int i, flag = 1, strCompare;
char c1 = *(p->name), c2 = *target, p1 = p->name, p2 = target;
while (c1 != '\0' && c2 != '\0') { //Comparing strings.
strCompare = (int)(c1 - c2);
if (strCompare != 0)
break;
else {
p1++;
p2++;
}
}
for (i = 0; i < size; i++, p++) {
if (strCompare == 0) {
flag = 0;
printf("Name = %s, Tel. = %s\n", p->name, p->telno);
}
if (flag == 1)
printf("Name not found.\n");
}
}

但我又收到了一些警告。

warning: cast from pointer to integer of different size
warning: initialization makes pointer from integer without a cast

我真的认为,如果结构都作为数组传递,我的生活会更轻松,在这种情况下,我可以简单地使用 For 循环遍历结构数组并完成它。这是我在整个高中期间一直在做的事情,但现在我上了大学,我不得不处理作为指针传递的结构。

在这种情况下,我该如何处理 strcmp()?如何将其应用于任何将结构作为指针传递的程序?

最佳答案

程序模板结构不佳,使用过时且危险的函数 gets() 给出了一个非常糟糕的示例。

p 参数指向的数组中的结构数传递给 readin() 会好得多。从代码模板中,我们必须假设 MAX 结构可通过 p 访问。

readin 函数应该从标准输入读取最多 MAX 个条目,并使用索引或递增 p 将其存储到目标数组的相应元素中

这是一个带索引的解决方案:

int readin(PhoneBk *p) {
int i, n = MAX;
for (i = 0; i < n; i++) {
printf("Enter person name, # to stop.\n");
if (scanf("%19s", p[i].name) != 1 || p[i].name[0] == '#')
return i;
printf("Enter the telephone number.\n");
if (scanf("%19s", p[i].telno) != 1)
return i;
}
return i;
}

同样,搜索函数可以遍历从0size的数组排除:

void search(PhoneBk *p, int size, char *target) {
int i, found = 0;
for (i = 0; i < size; i++) {
if (!strcmp(p[i].name, target) {
printf("Name = %s, Tel. = %s\n", p[i].name, p[i].telno);
found++;
}
}
if (found == 0)
printf("Name not found.\n");
}

关于警告,您在 strcmp((char)p->name, "#") 上有一个拼写错误,转换是不必要的,在这种情况下将指针转换为单个 char,导致 2 个警告:一个用于将指针转换为不同大小的整数,另一个用于将整数传递给 strcmp() 而不是指向 char 的指针

关于c - 在作为指针传递的结构中使用 strcmp(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55018643/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com