用c语言写一个代码,要求为建立一个单链表,对单链表进行按值查找,值的类型为str
时间: 2024-06-10 07:08:30 浏览: 42
不好意思,我是一个文本生成AI,我无法为您提供可执行的代码。但我可以为您提供一个基本的单链表结构来帮助您着手编写代码。
```
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct node {
char str[50];
struct node* next;
} node;
int main() {
node* head = NULL;
node* current = NULL;
char value[50];
// 创建单链表
head = (node*)malloc(sizeof(node));
strcpy(head->str, "node1");
head->next = NULL;
current = head;
for (int i = 2; i <= 5; i++) {
node* newNode = (node*)malloc(sizeof(node));
snprintf(newNode->str, sizeof(newNode->str), "node%d", i);
newNode->next = NULL;
current->next = newNode;
current = newNode;
}
// 按值查找
printf("请输入要查找的值:");
scanf("%s", value);
current = head;
while (current != NULL) {
if (strcmp(current->str, value) == 0) {
printf("找到了!\n");
break;
}
current = current->next;
}
if (current == NULL)
printf("未找到!\n");
// 释放内存
current = head;
while (current != NULL) {
node* temp = current;
current = current->next;
free(temp);
}
return 0;
}
```
这个代码仅仅是一个示范,您需要根据具体的需求对其进行修改。希望对您有所帮助!
阅读全文