簡單二叉樹代碼實現(先序、中序、後序)

簡單二叉樹代碼實現(先序、中序、後序) #include<stdio.h> #include<stdlib.h> typedef struct node{ int data; struct node* left; struct node* right; }Node; //先序 void preorder(Node* node){ if(node!=NULL){ printf("%d
相關文章
相關標籤/搜索