循环链表内的结点插入

 /* 循环链表内的结点插入 */
#include "stdio.h"
struct clist
{
 int data;
 struct clist *next;
};
typedef struct clist node;
typedef node *clink;
/*循环链表的输出*/
void printclist(clink head)
{
 clink ptr;
 ptr=head;
 do
 {
  printf("[%d]",ptr->data);
  ptr=ptr->next;
 }while(ptr!=head&&head!=head->next);
 printf("/n");
}
/*循环链表的节点插入*/
clink insertnode(clink head,clink ptr,int value)
{
 clink new_node;
 clink previous;
 new_node=(clink)malloc(sizeof(node));
 new_node->data=value;
 new_node->next=NULL;
 if(head==NULL)
 {
  new_node->next=new_node;
  return new_node;
 }
 if(ptr==NULL)
 {
  /*第一种情况:插在第一个结点之前且成为链表开始。*/
  new_node->next=head;
  previous=head;
  while(previous->next!=head)  
   previous=previous->next;
  previous->next=new_node;
  head=new_node;  
 }
 else
 {
  /*第二中情况:插在节点之后*/
  new_node->next=ptr->next;
  ptr->next=new_node;
 }
 return head;
}
void main()
{
 clink head=NULL;
 int list[6]={1,2,3,4,5,6};
 int i;
 head=insertnode(head,head,list[0]);
 printclist(head);
 /*第一种情况:插在第一结点之前且成为链表开始*/
 head=insertnode(head,NULL,list[1]);
 printclist(head);
 for(i=2;i<6;i++)
 {
  /*第二种情况:插在第一个结点后*/
  head=insertnode(head,head,list[i]);
  printclist(head);
 }   
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值