- 博客(3)
- 资源 (7)
- 收藏
- 关注
原创 判断任一二叉树,是否为满二叉树.(输出二叉树,节点总数,二叉树深度)
#include "stdio.h" #include "malloc.h" int count; typedef struct node { char data; struct node *LChild; struct node *RChild; }BiTNode,*BiTree; void creatbitree(BiTree * bt) // 先序便历序列创建二叉树链
2012-03-27 09:29:14 821
原创 从数据库里面显示图片
public partial class showimage : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { int fileId; // 如果传过来的参数能转换成数字 //fileId = Convert.ToIn
2012-03-13 21:49:00 378
原创 实现链表的初始化,按值查找,插入,删除
#include #include #include #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 typedef char ElemType; typedef struct Node /*结点类型定义*/ { ElemType data; struct Node * nex
2012-03-13 21:44:47 4766
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人