二叉樹與堆排序

一、簡單二叉樹的建立與遍歷node 遍歷:先序遍歷、中序遍歷、後續遍歷數組 #include <stdio.h> #include <stdlib.h> struct node { int data; struct node *right, *left; }; typedef struct node TreeNode; TreeNode *CreateTree(int *a) { int
相關文章
相關標籤/搜索