当前位置:   article > 正文

c语言:创建环状链表_c语言循环链表怎么创建

c语言循环链表怎么创建
/*
	要创建一个环形链表,创建十个节点并赋值0-9,并依次输出
*/
#include <stdio.h>
#include <malloc.h>
#define N 10
struct node
{
    int num;
    struct node* next;
};
struct node*create()//方法是尾插法,也就是头指针一直不变,从尾部插入创建节点
{
    int i=0;
    struct node*head=NULL;
    struct node*q=NULL;
    head=(struct node*)malloc(sizeof(struct node));
    head->next=NULL;
    head->num=i;
    if(head==NULL)
        printf("NULL");
    struct node*tail=head;//创建第一个节点,并让head和tail指向的是同样的节点
    for(i=1;i<N;i++)//循环创建其他九个节点
    {
        q=(struct node*)malloc(sizeof(struct node));
        q->num=i;
        q->next=NULL;//q指向的是最后一个节点
        tail->next=q;//将p和tail关联,使p连进链表中
        tail=q;//让tail指回尾部
    }
    //到此是创建了一个单向链表
    tail->next=head;//最后让“头尾相连”
    return (head);//返回头指针
}
int main()
{
    struct node *p=create();//p指针指向以创建的链表的头指针
    int i;
    for(i=0;i<N;i++)
    {
        printf("%d  ",p->num);//依次输出数据
        p=p->next;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44

现在来看看结果

因为是环状链表,所以输出100个的时候就是把0-9循环了10次
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/895216
推荐阅读
相关标签
  

闽ICP备14008679号