gpt4 book ai didi

c - 如何将字符数组(字符串)传递到链表(队列)

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

我有一个 C 程序代码,它涉及将一个句子分成单独的单词并将这些单词放入一个链表中。我的问题是我是否应该将我的数据作为指针或单词数组传递。

我在这里包含了部分代码。一些论坛说使用 strcpy 来传递字符串,但是是在我的 *insert_at_foot 函数中还是在数据结构中?

测试输入在这里,我想在运行scanf获取字典后的最后一行读取(百分号后)

#hewitt
5 95 0
#hugh
40 60 0
#jackman
0 100 0
#logan
40 0 60
#melbourne
5 5 90
#sydney
5 5 90
#zack
40 40 20
%%%%%%%%%%
hugh jackman is retiring the wolverine character after logan

谢谢大家:)

typedef struct node node_t;

/* word of max letters stored in each data_t value */
typedef char data_t[MAXLETTERS];

/* listops.c */
struct node {
data_t word; //dereferences the first letter in data_t[MAXLETTERS]
node_t *next;
};

typedef struct {
node_t *head;
node_t *foot;
} list_t;

int
main (int argc, char *argv[]){
...
while(scanf("%s", getword(word, limit))!=EOF){
insert_at_foot(list, word);
}

while (!is_empty_list(list)) {
word = get_head(list);
printf("%s\n", word);
list = get_tail(list);
}

print_list(list);
}

list_t
*insert_at_foot(list_t *list, data_t word) {
node_t *new;
new = (node_t*)malloc(sizeof(*new));
assert(list!=NULL && new!=NULL);
//strcpy(new->data, word);
new->data = word;
new->next = NULL;
if (list->foot==NULL) {
/* this is the first insertion into the list */
list->head = list->foot = new;
} else {
list->foot->next = new;
list->foot = new;
}
return list;
}

最佳答案

如果您仍在为这个问题而苦苦挣扎,那么您已经不远了,但是您可以根据您提供的示例数据文件来读取和解析信息,这是一种更简单的方法。如果你看文件,你只关心读取最后一行数据并将其分离成单词。查看前面的所有行,它们都以标点符号( #% )开头,而最后一行以字母字符开头。

虽然有很多方法可以做到这一点,但一种非常有效的方法是使用 word 将每一行简单地读入固定缓冲区(例如 fgets ) (或 POSIX getline ),然后使用来自 <ctype.h> 的工具测试第一个字符是否为ispunct()isdigit() .如果任一测试 true , 只需阅读下一行。这种方法的简单性意味着当您退出读取循环时,您的读取缓冲区中包含最后一行。一个简单的实现是:

#define MAXLETTERS 256
...
char word[MAXLETTERS] = "", /* fixed buffer to hold each line */
*p = word, /* pointer to with for strtok */
*delim = " \t\n"; /* delimiters to use with strtok */
...
while (fgets (word, MAXLETTERS, stdin)) /* read/discard until last line */
if (ispunct (*word) || isdigit (*word))
continue;
else
break;

使用 word 中包含的行, 您可以使用 strtok 将行分隔成单独的单词基于您指定的任何分隔符( ' ''\n' )在这里是有意义的。 strtok返回指向每个单独单词开头的指针,并且在每次连续调用时,将指向行中的下一个单词。您第一次调用 strtok使用包含您的行的缓冲区的名称,例如

    char word[MAXLETTERS] = "",   /* fixed buffer to hold each line */
...
p = strtok (p, delim); /* 1st call to strtok for 1st word */

每个后续调用都使用 NULL代替 buf ,例如

    p = strtok (NULL, delim);     /* all subsequent calls use NULL */

strtok到达原始字符串的末尾,它将返回 NULL .

(注意: strtok 通过插入 '\0' 字符来修改字符串,同时对字符串进行分词——所以如果您需要维护原始字符串,请复制原始字符串)

然后您只需将每个标记(单个单词)传递给您的 insert_at_foot (list, p)功能。您可以将所有步骤组合成一个简单的 for循环如下:

    /* tokenize last line using strtok */
for (p = strtok (p, delim); p; p = strtok (NULL, delim))
insert_at_foot (list, p); /* insert word in llqueue */

insert_at_foot ()内,您不能分配 字符串。如评论中所述,问题的一个潜在来源是您对数组进行了类型定义,它屏蔽了 word 的类型。在函数中。就是char*你必须使用 strcpy复制到 new->word ( new->word = word;)

修复该问题并整理函数并为 list 添加验证检查,你可以这样做:

list_t *insert_at_foot (list_t *list, char *word)
{
node_t *new = malloc(sizeof *new);
assert (list != NULL && new != NULL); /* validate both list & node */

strcpy (new->word, word); /* you cannot assign strings, strcpy */
new->next = NULL; /* initialize next to NULL */

if (list->foot==NULL) { /* check if list is empty */
/* this is the first insertion into the list */
list->head = list->foot = new;
}
else { /* additional nodes added at foot */
list->foot->next = new;
list->foot = new;
}

return list;
}

把它放在一起(并填写您在帖子中未提供的功能),一个工作示例可能类似于:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <assert.h>

#define MAXLETTERS 256

typedef struct node node_t;

/* listops.c */
struct node {
char word[MAXLETTERS]; //dereferences the first letter in data_t[MAXLETTERS]
node_t *next;
};

typedef struct {
node_t *head;
node_t *foot;
} list_t;

list_t *insert_at_foot (list_t *list, char *word);

int is_empty_list (node_t *thenode)
{
return thenode == NULL;
}

int main (void) {

char word[MAXLETTERS] = "",
*p = word,
*delim = " \t\n";
list_t *list = calloc (1, sizeof *list); /* allocate list */

while (fgets (word, MAXLETTERS, stdin)) /* read/discard until last line */
if (ispunct (*word) || isdigit (*word))
continue;
else
break;

/* tokenize last line using strtok */
for (p = strtok (p, delim); p; p = strtok (NULL, delim))
insert_at_foot (list, p); /* insert word in llqueue */

// print_list(list);
node_t *iter = list->head; /* temp node to iterate over list */
while (!is_empty_list(iter)) { /* while node not NULL */
node_t *victim = iter; /* temp node to free */
printf("%s\n", iter->word); /* output word saved in node */
iter = iter->next; /* set iter to next node */
free (victim); /* free current node */
}
free (list); /* don't forget to free the list */
}

list_t *insert_at_foot (list_t *list, char *word)
{
node_t *new = malloc(sizeof *new);
assert (list != NULL && new != NULL); /* validate both list & node */

strcpy (new->word, word); /* you cannot assign strings, strcpy */
new->next = NULL; /* initialize next to NULL */

if (list->foot==NULL) { /* check if list is empty */
/* this is the first insertion into the list */
list->head = list->foot = new;
}
else { /* additional nodes added at foot */
list->foot->next = new;
list->foot = new;
}

return list;
}

示例输入文件

$ cat dat/llqueue.txt
#hewitt
5 95 0
#hugh
40 60 0
#jackman
0 100 0
#logan
40 0 60
#melbourne
5 5 90
#sydney
5 5 90
#zack
40 40 20
%%%%%%%%%%
hugh jackman is retiring the wolverine character after logan

示例使用/输出

$ ./bin/llqueue <dat/llqueue.txt
hugh
jackman
is
retiring
the
wolverine
character
after
logan

内存使用/错误检查

在您编写的任何动态分配内存的代码中,您对分配的任何内存块负有 2 个责任:(1) 始终保留指向起始地址的指针内存块,因此,(2) 它可以在不再需要时被释放

您必须使用内存错误检查程序来确保您不会尝试访问内存或写入超出/超出您分配的 block 的边界,尝试读取或基于未初始化的值进行条件跳转,最后, 以确认您释放了所有已分配的内存。

对于 Linux valgrind是正常的选择。每个平台都有类似的内存检查器。它们都易于使用,只需通过它运行您的程序即可。

$ valgrind ./bin/llqueue <dat/llqueue.txt
==22965== Memcheck, a memory error detector
==22965== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
==22965== Using Valgrind-3.12.0 and LibVEX; rerun with -h for copyright info
==22965== Command: ./bin/llqueue
==22965==
hugh
jackman
is
retiring
the
wolverine
character
after
logan
==22965==
==22965== HEAP SUMMARY:
==22965== in use at exit: 0 bytes in 0 blocks
==22965== total heap usage: 10 allocs, 10 frees, 2,392 bytes allocated
==22965==
==22965== All heap blocks were freed -- no leaks are possible
==22965==
==22965== For counts of detected and suppressed errors, rerun with: -v
==22965== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)

始终确认您已释放所有分配的内存并且没有内存错误。

检查一下,如果您还有其他问题或者我是否以任何方式误解了您的问题,请告诉我。

关于c - 如何将字符数组(字符串)传递到链表(队列),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50383139/

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