会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
CharHao的博客
路漫漫其修远兮,吾将上下而求索。
博客园
首页
新随笔
联系
订阅
管理
2023年12月22日
《将博客搬至CSDN》
摘要: 《将博客搬至CSDN》
阅读全文
posted @ 2023-12-22 16:16 CharHao
阅读(4)
评论(0)
推荐(0)
2021年11月6日
链栈的操作
摘要: #include<stdio.h> #include<malloc.h> #include<stdlib.h> typedef int SElemType; typedef struct StackNode { SElemType data; struct StackNode* next; }Sta
阅读全文
posted @ 2021-11-06 21:10 CharHao
阅读(57)
评论(0)
推荐(0)
顺序栈的操作
摘要: #include<stdio.h> #include<malloc.h> #include<stdlib.h> #define MAXSIZE 100 typedef int SElemType; typedef struct SqStack { SElemType* base;//栈底指针 SEl
阅读全文
posted @ 2021-11-06 20:53 CharHao
阅读(71)
评论(0)
推荐(0)
2021年10月16日
线性表的合并
摘要: /* 线性表的合并 */ #include <stdio.h> #include <stdlib.h> #include <malloc.h> #include <stdbool.h> typedef int ElemType; typedef struct Lnode{ ElemType data
阅读全文
posted @ 2021-10-16 23:50 CharHao
阅读(209)
评论(0)
推荐(0)
有序表的合并---顺序表实现
摘要: /* 有序表的合并 用顺序表实现 */ #include <stdio.h> #include <stdlib.h> #include <malloc.h> #include <stdbool.h> #define MAXSIZE 100 typedef int ElemType; typedef
阅读全文
posted @ 2021-10-16 23:34 CharHao
阅读(606)
评论(0)
推荐(0)
有序表的合并---链表实现
摘要: /* 类似力扣21题 有序表的合并 用链表实现 */ #include <stdio.h> #include <stdlib.h> #include <malloc.h> typedef int ElemType; typedef struct Lnode{ ElemType data; struc
阅读全文
posted @ 2021-10-16 23:33 CharHao
阅读(95)
评论(0)
推荐(0)
双向链表操作
摘要: /* 双链表 */ #include <stdio.h> #include <malloc.h> typedef int ElemType; typedef struct DuLNode{ ElemType data; struct DuLNode * prior, * next; }DuLNode
阅读全文
posted @ 2021-10-16 23:31 CharHao
阅读(59)
评论(0)
推荐(0)
2021年10月15日
有序表的合并-用链表操作
摘要: /* 有序表的合并 用链表实现 */ #include <stdio.h> #include <stdlib.h> #include <malloc.h> typedef int ElemType; typedef struct Lnode{ ElemType data; struct Lnode
阅读全文
posted @ 2021-10-15 22:59 CharHao
阅读(74)
评论(0)
推荐(0)
C语言单链表操作
摘要: #include<stdio.h> #include<stdlib.h> #include<malloc.h> typedef int ElemType; typedef struct Lnode { ElemType data; struct Lnode* next; }LNode, * Link
阅读全文
posted @ 2021-10-15 22:45 CharHao
阅读(135)
评论(0)
推荐(0)
2021年10月9日
c语言顺序表操作
摘要: #include<stdio.h> #include<malloc.h> #include<stdlib.h> #define MAXSIZE 100 typedef int ElemType; typedef struct SqList { ElemType* data; int length;
阅读全文
posted @ 2021-10-09 22:29 CharHao
阅读(114)
评论(0)
推荐(0)
下一页
公告