MIPI_AdvancedC_FRTK/Lect7/14_insert_head.c
2024-11-14 08:45:50 +03:00

43 lines
936 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
typedef struct list {
uint32_t id;
struct list *next;
} list;
//Итерационная печать
void printListIteration(list *p)
{
while(p)
{
printf("%d ",p->id);
p = p->next;
}
printf("\n");
}
/* С заглавным элементом, в этом случае двойной указатель не нужен*/
void insert3(list *head, int32_t value)
{
list *new = calloc(1,sizeof(list));
new->id = value;
new->next = head->next; //в списке точно есть хотя бы одно звено
head->next = new;
}
int main(void)
{
list* L = calloc(1,sizeof(list)); // Добавляем заглавное звено
L->id = -1; // Эти данные не используются
insert3(L,3);
insert3(L,2);
insert3(L,1);
printListIteration(L);
return 0;
}