摘要: 二叉树基本操作代码#include "stdafx.h"#include "stdlib.h"#include "string.h"#define MAX 100typedef char Elemtype;typedef struct BTNODE{ Elemtype data; BTN... 阅读全文
posted @ 2014-06-15 15:39 静默虚空 阅读(862) 评论(0) 推荐(0)