会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
WCSLKJ
博客园
首页
新随笔
联系
订阅
管理
2019年4月27日
树
摘要: #include<stdio.h>#include<stdlib.h> typedef struct node{ int data; struct node*lchild; struct node*rchild;}BiTree;//生成树BiTree* CreateTree(BiTree* root
阅读全文
posted @ 2019-04-27 19:40 WCSLKJ
阅读(80)
评论(0)
推荐(0)
2019年3月25日
线性表总结
摘要: #1.代码段1简介:单链表逆置 ##1.1. #include <iostream>using namespace std;typedef int ElemType;typedef struct LNode //定义单链表结点类型{ ElemType data; struct LNode *next
阅读全文
posted @ 2019-03-25 16:46 WCSLKJ
阅读(99)
评论(0)
推荐(0)
公告