链表(b站“C语言基础“笔记)

 (一)单链表

int main(){
    struct Node* list=createList();
    insertNodeByHead(list,1);
    insertNodeByHead(list,2);
    insertNodeByHead(list,3);
    printList(list);
    deleteNodeByAppoin(list,2);
    printList(list);
    return 0;
}

一.定义

struct Node{
    int data;//数据域
    struct Node* next;//指针域
};

二.创建链表

struct Node* createList(){
    struct Node* headNode=(struct Node*)malloc(sizeof(struct Node));
    //headNode成为了结构体变量
    //变量使用前必须被初始化
    headNode->next=NULL;
    return headNode;
}

三.创建节点

struct Node* createNode(int data){
    struct Node* newNode=(struct Node*)malloc(sizeof(struct Node));
    newNode->data=data;
    newNode->next=NULL;
    return newNode;
}

 四.打印节点

void printList(struct Node* headNode){
    struct Node* pMove=headNode->next;
    //从第二个节点开始打印(头节点一般为空)
    while(pMove){
    printf("%d\t",pMove->data);
    pMove=pMove->next;
    }
}

 五.插入节点

void insertNodeByHead(struct Node* headNode,int data){
    //头插
    struct Node* newNode=createNode(data);
    newNode->next=headNode->next;
    headNode->next=newNode;
}

 六.删除节点

  

void deleteNodeByAppoin(struct Node* headNode,int posData){
    struct Node* posNode=headNode->next;
    struct Node* posNodeFront=headNode;
    if(posNode==NULL)
        printf("无法删除链表为空\n");

    else{
        while(posNode->data!=posData){
            posNodeFront=posNode;
            posNode=posNodeFront->next;
            if(posNode==NULL){
                printf("无法找到相关信息\n")
                break;
            }
        }
    posNodeFront->next=posNode->next;
    free(posNode);
}

七.例:建立一个简单的学生信息储存

//不要把数据的结构体写入链表的结构体内
struct student{
    char name[20];//名字
    int math;//数学成绩
    int num;//编号
}
struct Node{
    struct student data;  //数据域
    struct Node* next;    //指针域
}
void insertNodeByHead(struct Node* headNode,struct student data)//添加节点
void deleteNodeByAppoin(struct Node* headNode,int num)//删除指定节点(num)
{
    ...
    while(posNode->data.num!=num)
    ...
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值