首页 > 编程语言 > 详细

单链表的实现C语言版

时间:2020-06-14 21:34:10      阅读:47      评论:0      收藏:0      [点我收藏+]

线性表的第二个儿子-------------单链表

结构体如下

typedef int ElemType;
typedef struct Lnode{
  ElemType data;
  struct Lnode* next;    
}Lnode,*LinkLnode;

初始化链表

LinkLnode InitLnode(){
     LinkLndoe p;
     LinkLnode temp = (LinkLnode)malloc(sizeof(Lnode));
     temp->data = NULL;
     temp->next = NULL;
     P = temp;
     return p;  
}

插入链表

LinkLnode InsertLnode(LinkLnode l, int add, ElemType e){
        LinkLnode temp = NULL ;
        temp = l;
        if(add<1){
        printf("插入有问题");
        return l;
}   
        for(int i = 1;i < add;i++){
        if(temp==NULL){
         printf("插入有问题");
         return l;
}
        temp = temp->next;
} 
        LinkLnode c = (LinkLnode)malloc(sizeof(Lnode));
        c->data = e;
        c->next = temp->next;
        temp->next = c;
        return l;
}       

 

单链表的实现C语言版

原文:https://www.cnblogs.com/chaogechaoge/p/13127075.html

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