当前位置: 首页 > news >正文

C语言--静态链表

静态链表使用数组来模拟链表,数组中的每个元素包含数据和下一个元素的索引。


#include <stdio.h>
#include <stdlib.h>

#define MAX_SIZE 100

typedef struct {
    int data; // 数据部分
    int next; // 下一个节点的索引
} Node;

typedef struct {
    Node nodes[MAX_SIZE];
    int head; // 头指针
    int free; // 自由节点的索引
} StaticLinkedList;

// 初始化静态链表
void initList(StaticLinkedList *list) {
    list->head = -1; // 表示空链表
    list->free = 0;  // 从第一个节点开始
    for (int i = 0; i < MAX_SIZE - 1; i++) {
        list->nodes[i].next = i + 1; // 初始化空闲链表
    }
    list->nodes[MAX_SIZE - 1].next = -1; // 最后一个节点指向空
}

// 获取一个空闲节点
int allocateNode(StaticLinkedList *list) {
    if (list->free == -1) return -1; // 没有空闲节点
    int index = list->free;
    list->free = list->nodes[index].next; // 更新空闲节点
    return index;
}

// 插入节点
void insert(StaticLinkedList *list, int value) {
    int index = allocateNode(list);
    if (index == -1) return; // 无法分配节点

    list->nodes[index].data = value;
    list->nodes[index].next = list->head; // 指向当前头节点
    list->head = index; // 更新头指针
}

// 打印链表
void printList(StaticLinkedList *list) {
    int current = list->head;
    while (current != -1) {
        printf("%d ", list->nodes[current].data);
        current = list->nodes[current].next;
    }
    printf("\n");
}

// 释放链表
void freeList(StaticLinkedList *list) {
    int current = list->head;
    while (current != -1) {
        int temp = current;
        current = list->nodes[current].next;
        list->nodes[temp].next = list->free; // 归还节点
        list->free = temp;
    }
    list->head = -1; // 重新设置头指针
}

int main() {
    StaticLinkedList list;
    initList(&list);
    
    insert(&list, 10);
    insert(&list, 20);
    insert(&list, 30);
    
    printList(&list);
    freeList(&list);
    
    return 0;
}


http://www.mrgr.cn/news/2848.html

相关文章:

  • 测试环境频繁报:RedisCommandInterruptedException: Command interrupted
  • 父子模块的maven以及Ajax实现人工管理系统
  • 《给所有人的生成式 AI 课》学习笔记(三)
  • 无人机测绘技术及应前景详解
  • Python 连接数据库实现 CRUD(MySQL)
  • 在 Vue 2.0 中集成 Markdown 编辑器
  • 平衡二叉树、B树、B+树、红黑树解析
  • WEB渗透免杀篇-Golang免杀
  • JavaScript判断数组是否包含某个值
  • 五大无线领夹麦克风误区科普:领夹麦杂音干扰不耐用问题必须规避
  • Mac文件需要分卷压缩怎么办 Mac上怎么解压分卷压缩的文件
  • 打卡学习Python爬虫第二天|Requests的使用
  • 测绘程序设计|C#基本数据类型|值类型与引用类型
  • Tomcat学习进阶
  • Redis清空缓存
  • Spring 中,获取当前方法的类的代理对象有哪些方法?
  • 计算机Java项目|基于SpringBoot的农商对接系统的设计与实现
  • 斯坦福UE4 C++课学习补充22:AI行为树-寻路入门
  • windows入侵排查下
  • 华为Mate航天员系列影片引发热潮,Mate 70系列消息引爆网友期待