会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
努力的薇薇啊
博客园
首页
新随笔
联系
订阅
管理
2020年4月20日
6-2 顺序表操作集 (20分)
摘要: 完整的测试代码: //这道题中L->Last是线性表长,并不是下标 AC代码: List MakeEmpty(){ struct LNode *p=NULL; p=(struct LNode *)malloc(sizeof(struct LNode)); if(p==NULL) { return N
阅读全文
posted @ 2020-04-20 10:50 努力的薇薇啊
阅读(515)
评论(0)
推荐(0)
2020年4月19日
6-1 单链表逆转 (20分)
摘要: //以下是调试代码: #include <stdio.h>#include <stdlib.h> typedef int ElementType;typedef struct Node *PtrToNode;struct Node { ElementType Data; PtrToNode Next
阅读全文
posted @ 2020-04-19 15:07 努力的薇薇啊
阅读(358)
评论(0)
推荐(0)
公告