
数据结构
qq_23664173
这个作者很懒,什么都没留下…
展开
-
Linux内核链表
Linux内核链表原创 2022-11-22 23:01:18 · 280 阅读 · 0 评论 -
普通二叉树
#include <stdio.h> #include <stdlib.h> typedef struct node { int data; struct node *left; struct node *right; } Node; typedef struct tree { Node *root; }Tree; void insert(Tree *tree, int value){ Node *node = malloc(sizeof原创 2021-10-28 23:18:47 · 102 阅读 · 0 评论