数据结构-二叉排序树的建立和应用

第1关:二叉排序树应用一、

本关任务:输入一个无序序列,创建一棵二叉排序树。

//
//  binary_sort_tree.cpp
//  BinarySortTree
//
//  Created by ljpc on 2018/5/11.
//  Copyright © 2018年 ljpc. All rights reserved.
//

#include "binary_sort_tree.h"

BiTreeNode* insertBiSortTree(BiTreeNode* root, int key

你可能感兴趣的:(Educoder实训,数据结构,排序算法,算法)