を使用して、リンクされたリストの char ポインターに複数回入力しようとしていますscanf
。しかし、新しい入力を入力するname
たびに、すべてのフィールドが変更されます。
ここに私のリンクされたリストがあります:
struct node {
struct node *next;
int level;
char *name;
};
ここに私の主な機能があります:
struct node *root = NULL;
while (1) {
char arrays[12];
char *n;
n = arrays;
int i = NULL;
printf("Enter level: ");
scanf("%i", &i);
printf("\nEnter name: ");
scanf("%s", arrays);
insert(&root, i, n, compare);
display(root);
}
挿入機能:
void insert(struct node **head, const int level, char *name, int(*cmp)(struct node *l, struct node *r))
{
struct node *new;
new = malloc(sizeof *new);
new->level = level;
new->name = name;
/* Find the insertion point */
for (; *head != NULL; head = &(*head)->next)
{
if ((*head)->level > level || (*head)->level == level && cmp(*head, new) > 0) { break; }
}
new->next = *head;
*head = new;
}
基本的に私が入力した場合:
input: | expected output: | actual output:
1 smith | 1 john | 1 alice
1 john | 1 smith | 1 alice
3 malek | 2 alice | 2 alice
2 alice | 3 malek | 3 alice
注:例を使用せずに手動でデータを入力すると、関数は期待どおりに機能しますscanf
:
insert(&root, 1, "Abbas", compare);
insert(&root, 1, "Calbass", compare);