
数据结构--C语言
文章平均质量分 77
iyllyl
这个作者很懒,什么都没留下…
展开
-
数据结构(栈和队列)
[color=red][b]商品货架管理[/b][/color][b][color=blue]1、用栈和队列实现[/color][/b]#include #include #include #define MaxSize 3//定义商品信息typedef struct { char name[20]; //商品名称 long int date...2010-11-03 21:29:54 · 630 阅读 · 0 评论 -
二叉树的创建、先中后序遍历及判断是否为满二叉树(递归与非递归算法)
[color=blue][b]//(递归的)[/b][/color]#include "stdafx.h"#include#include//#includetypedef struct node *BiTree;struct node{ char ch; BiTree Lchild,Rchild;};BiTree root=NULL;//创建二叉树...原创 2010-11-11 16:46:39 · 288 阅读 · 0 评论