• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






CFYblog

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2025年8月22日

常见数据结构之树
摘要: 待完善 #include <stdio.h>#include <stdlib.h>typedef struct Tree_node{ int val; struct Tree_node* lef; struct Tree_node* rig;}Tree_node;Tree_node* Create_ 阅读全文
posted @ 2025-08-22 15:11 GanDuoLa 阅读(6) 评论(0) 推荐(0)
 
常见数据结构之队列
摘要: #include <stdio.h> #include <stdlib.h> typedef struct Queue { int *data; int front; int rear; int maxSize; int flag; } Queue; //创建队列 void BuildQueue(Q 阅读全文
posted @ 2025-08-22 15:03 GanDuoLa 阅读(8) 评论(0) 推荐(0)
 
常见数据结构之链表
摘要: 数据结构 链表:指针方法,头插法 #include <stdio.h>#include <stdlib.h>typedef struct ListNode { int val; struct ListNode *next;} ListNode;typedef struct List{ ListNod 阅读全文
posted @ 2025-08-22 14:03 GanDuoLa 阅读(6) 评论(0) 推荐(0)