链表的实现(C语言)

链表相对于数组来说有诸多的优点:

  1. 节省内存,有效的利用空间
  2. 删除某一数据,在某一位置插入数据,很方便快捷

但是相对于数组来说,也是有缺点的,就是查找会慢一些。

对于链表的操作无非就是,插入、删除、查找。

typedef struct node{
    int data;
    struct node *next;
}Node;

创建链表

Node *create(Node *t,int n){
    int i;
    Node *p,*pr;
    t = (Node *)malloc(sizeof(Node);
    pr = t;
    for(i=0;i<n;i++){
        p = (Node*)malloc(sizeof(Node));
        scanf("%d",&p->data);
        pr->next = p;
        pr = p;
    }
    pr->next = NULL;
    return t;
}

输出(遍历)链表

void display(Node *t){
    t=t->next;
    while(t!=NULL){
        printf("%d ",t->data);
        t=t->next; 
    }
    printf("\n");
}

插入数据

/*
* n:在链表的第n个位置插入
* m:所插入的数据
*/
Node *insert(int n,int m,Node *t){
    Node *p = NULL,*pr = t;
    p = (Node*)malloc(sizeof(Node));
    p->data = m;
    int i=0;
    while(pr&&i<n-1){
        i++;
        pr = pr->next;
    }
    p->next = pr->next;
    pr->next = p;
    return t;
}

删除数据

/*n:删除第n个数据*/
Node *Delete(int i,Node *t){
    int i;
    Node *p = NULL,*pr = t;
    while(pr&&i<n-1){
        i++;
        pr=pr->next; 
    }
    p = pr->next;
    pr->next = p->next;
    free(p);
    return t;
}

完整代码:

#include<stdio.h> 
#include<stdlib.h>
typedef struct node{
    int data;
    struct node *next;
}Node;

Node* create(Node *t,int n){
    Node *p,*pr;
    int i;
    t = (Node *)malloc(sizeof(Node));
    pr = t;
    for(i=0;i<n;i++){
        p = (Node*)malloc(sizeof(Node));
        scanf("%d",&p->data);
        pr->next = p;
        pr = p;
    }
    pr->next = NULL;
    return t;
}

void display(Node *t){
    t=t->next;
    while(t!=NULL){
        printf("%d ",t->data);
        t=t->next; 
    }
    printf("\n");
}

Node *insert(int n,int m,Node *t){
    Node *p = NULL,*pr = t;
    p = (Node*)malloc(sizeof(Node));
    p->data = m;
    int i=0;
    while(pr&&i<n-1){
        i++;
        pr = pr->next;
    }
    p->next = pr->next;
    pr->next = p;
    return t;
}

Node *Delete(int n,Node *t){
    int i;
    Node *p = NULL,*pr = t;
    while(pr&&i<n-1){
        i++;
        pr=pr->next; 
    }
    p = pr->next;
    pr->next = p->next;
    free(p);
    return t;
}

int main(){
    int n,m;
    Node *head = NULL;
    while(scanf("%d",&n)!=-1){
        head=create(head,n);
        display(head);
        scanf("%d%d",&n,&m);
        head=insert(n,m,head);
        display(head);
        scanf("%d",&n);
        head = Delete(n,head);
        display(head);
    }
    return 0;
} 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值