• 大小: 0.73KB
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签: 语言  c  C语言  

资源简介

C语言链表创建与逆序输出

资源截图

代码片段和文件信息

#include 
#include 
#define N sizeof(struct x)
struct x
{
int num;
struct x *next; 
}; 

struct x *creat(void)
{
struct x *p1*p2*head;
head=p2=(struct x *)malloc(N); //headp2指向头结点
p1=(struct x *)malloc(N); //p1创建新结点 
scanf(“%d“&p1->num); 
while(p1->num!=-1)
{
p2->next=p1; //连接p2->p1两个结点 
p2=p1; //p2向p1挪动 

评论

共有 条评论