學習筆記 c++ (tree 樹的表示)

         代碼: #include<iostream> #include<string> using namespace std; struct PTNode {     string data;  //結點數據      int parent; //父節點的位置     int self;   //自己的位置 }; struct {     PTNode nodesize[100]; /
相關文章
相關標籤/搜索