原创 C語言 排序二叉樹 刪除某個結點

#include<stdio.h> #include<stdlib.h> struct treenode {  int data;  struct treenode *left,*right; }; struct treenode *cr