由买买提看人间百态

topics

全部话题 - 话题: joinre
(共0页)
l****t
发帖数: 8
1
Please join this group: r*********[email protected]
谢谢你们的信,也很高兴认识你们。
我发那篇文章也只是想把自己心里想了很久的话说出来。我一直想,如果所有的(至少大
多数) 从农村的出来的人能团结起来,发出自己的声音,这恐怕是改变农村政策的比较有
效的办法了。当然,这事只能缓行,不能过急。现在我最想做的是:
1,大家都相互联系,至少我们相互之间能在这过城市里相互帮助。
2,成立奖学金,鼓励更多的农村学子能有所成,并在学成之后为农民着想。我自己是想
,如果有一些志同道合者一起来设这种奖学金,我会从我收入中出2-5%每年。如果设贷款
金,我会更多。在提供金钱的同时,我们还可以已过来人的经验,帮助他们,有时这比金
钱跟有用。告诉他们,我们不是可怜他们,而是相信他们将来也能象我们一样为农村的未
来着想。
3,这是目前我有的几个同道朋友的EMAIL, 有更多我会告诉大家的。
r*********[email protected]
e***r
发帖数: 68
2
来自主题: Programming版 - What's the efficient way to merge two BST?
According to :
Joining of two BSTs at Page552:
Program 12.23 Joining of two BSTs
If either BST is empty, the other is the result. Otherwise, we combine the
two BSTs by (arbitrarily) choosing the root of the first as the root, root
inserting that root into the second, then (recursively) combining the pair
of left subtrees and the pair of right subtrees.
private Node joinR(Node a, Node b)
{ if (b == null) return a;
if (a == null) return b;
insertT(b, a.item); //把a插入到b
(共0页)