2024/10/30 数据结构大题打卡

typedef struct Link {

unsigned id;

unsigned ip;

int metric;

struct Link *next;

} Link;

typedef struct Net {

unsigned prefix; // 注意拼写

int metric;

struct Net *next; // 如果 Net 也是链表

} Net;

typedef struct L {

Link *linkHead; // 链表头指针,用于链接 Link 链表

Net *netHead; // 链表头指针,用于链接 Net 链表

struct L *nextLevel; // 指向下一个 L 结构体,构成链表结构

unsigned ID;

} L;

相关推荐
Fanxt_Ja1 天前
【LeetCode】算法详解#15 ---环形链表II
数据结构·算法·leetcode·链表
今后1231 天前
【数据结构】二叉树的概念
数据结构·二叉树
散1122 天前
01数据结构-01背包问题
数据结构
消失的旧时光-19432 天前
Kotlinx.serialization 使用讲解
android·数据结构·android jetpack
Gu_shiwww2 天前
数据结构8——双向链表
c语言·数据结构·python·链表·小白初步
苏小瀚2 天前
[数据结构] 排序
数据结构
睡不醒的kun2 天前
leetcode算法刷题的第三十四天
数据结构·c++·算法·leetcode·职场和发展·贪心算法·动态规划
吃着火锅x唱着歌2 天前
LeetCode 978.最长湍流子数组
数据结构·算法·leetcode
Whisper_long2 天前
【数据结构】深入理解堆:概念、应用与实现
数据结构
IAtlantiscsdn2 天前
Redis7底层数据结构解析
前端·数据结构·bootstrap