摘要:
单词查找树 经过单词排序后,可知相邻的每两个单词之差就是需要添加的最小必要树结点。 1 #include<iostream> 2 #include<algorithm> 3 using namespace std; 4 int cmp(string x,string y){ 5 return x>y 阅读全文
摘要:
找树根和孩子 第一道树!!!(#^.^#) 题目有一个隐含条件:结点值小于等于100 1 #include<iostream> 2 #include<algorithm> 3 using namespace std; 4 const int N=105; 5 int maxx,tree[N]; 6 阅读全文