摘要: 二叉排序树,包括建树的整个过程,还有他的数据结构,应仔细体会。// 2418-二叉排序树.cpp : 定义控制台应用程序的入口点。#include "stdafx.h"#include<iostream>using namespace std;struct node{ node *left; node *right; double num; char str[59];}*head;//这里建了头指针double sum=0;void insert(char str[]){ node *p1,*p2; p1=head; int t; while(p1!=NULL) 阅读全文
posted @ 2011-05-25 15:07 张兰云 阅读(259) 评论(0) 推荐(1) 编辑