싱글 체인
다음은 main. c:
#include "main.h"
int main(int argc, char *argv[])
{
List *head = NULL;
int v1 = 5;
int v2 = 6;
head = list_create();
list_insert( &head, v1 );
list_insert( &head, v2 );
list_print( head );
list_destory( head );
return 0;
}
다음은 main. h:
#ifndef __MAIL_H__
#define __MAIL_H__
#include <stdio.h>
#include <stdlib.h>
#include "list.h"
#endif
다음은 list. c:
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include "list.h"
List *list_create()
{
List *head;
head = (List *)malloc(sizeof(List));
if (head)
{
head->data = 2;
head->next = NULL;
return head;
}
return NULL;
}
int list_insert( List **head, int data )
{
List *tmp = *head, *p;
List *v1;
if(tmp == NULL)
{
v1 = (List *)malloc(sizeof(List));
if(v1)
{
v1->data = data;
v1->next = NULL;
tmp->next = v1;
printf("tmp->data = %d
", tmp->data);
}
}
else
{
printf("====%d
",tmp->data);
while(tmp->next)
{
tmp = tmp->next;
}
v1 = (List *)malloc(sizeof(List));
if(v1)
{
v1->data = data;
v1->next = NULL;
tmp->next = v1;
}
}
}
void list_print(List *node)
{
List *tmp = node;
while(tmp)
{
printf("The data is [%d]
",tmp->data);
tmp = tmp->next;
}
}
void list_destory(List *node)
{
List *tmp = node;
while( tmp )
{
free( tmp );
tmp = tmp->next;
}
}
다음은 list. h:
#ifndef __LIST_h__
#define __LIST_h__
typedef struct _tag List;
struct _tag{
int data;
List *next;
};
int list_insert(List **head, int v1);
void list_delete(List *node);
void list_destory(List *node);
List *list_create();
void list_print(List *node);
#endif
작은 Makefile 을 추가 합 니 다.
all:main
CFLAGS=-g
main:main.o list.o
clean:
rm -f *.o main
OK, 오늘 의 내용 은 여기까지 입 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.