首页 > 其他 > 详细

第十七次发博不知道用什么标题好

时间:2019-04-24 00:14:52      阅读:160      评论:0      收藏:0      [点我收藏+]

双向链表的插入

typedef struct node{

  Elemtype data;

  struct nide *prior;

  struct node *next;

}Dlist;

int insElem(Dlist *L,Elemtype x,int i){

  int j=0;

  Dlist *p,*s;

  *p=L;

  if(p==NULL) return 0;

  else {

      s=(Dlist *)malloc(sizeof(Dlist));

      s->data=x;  

      s->next=p->next;     //①

      if(p->next==NULL)

        p->next->prior=s;  //②

        s->prior=p;       //③

        p->next=s;       //④

        return 1;

    }

}

 

第十七次发博不知道用什么标题好

原文:https://www.cnblogs.com/shi-yuan/p/10759960.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!