学习笔记 c++ (tree 树的表示)

         代码: #include<iostream> #include<string> using namespace std; struct PTNode {     string data;  //结点数据      int parent; //父节点的位置     int self;   //自己的位置 }; struct {     PTNode nodesize[100]; /
相关文章
相关标签/搜索