摘要: #include<iostream> using namespace std; //define the node of a tree struct Node{ int data; Node* leftchild; Node* rightchild; Node() { leftchild = rig 阅读全文
posted @ 2021-04-26 22:41 关河梦断 阅读(90) 评论(0) 推荐(0)