枯叶北风寒,忽然年以残,念往昔,语默心酸。二十光阴无一物,韶光贱,寐难安; 不畏形影单,道途阻且慢,哪曲折,如渡飞湍。斩浪劈波酬壮志,同把酒,共言欢! -如梦令
感觉和上次codeforce的第四题有点像,虽然没做出来,呵呵。看来枚举左右子树这一招还是蛮常用的。其实我本来想练下卡特兰数的,结果变成练DFS了。注意递归求解左右孩子时的那两个参数,一定要先加上1,否则就不对了。
posted on 2010-04-13 17:33 abilitytao 阅读(2132) 评论(5) 编辑 收藏 引用
srand(time(NULL)) 是以当前到1970年的时间间隔的秒数为种子,time(NULL),指不需要保存一个时间对象 通常情况下可以Time tTime;然后time(&tTime)来将这个时间获取到。 而rand()是以刚才生成的种子为基础来产生一个随机数,每调用一次产生一个数,貌似如果期间没有再次调用srand来生成种子,rand()是接着前面的序列来产生下一个数。(个人想法) 因为: srand(time(NULL)); int x = rand(); int y = rand(); x和y的值不一样。而: srand(time(NULL)); int x = rand(); srand(time(NULL)); int y = rand(); 则是相同,因为后一种使用了同一个种子(运行期间时间很短,返回的秒数相同) 回复 更多评论
I can understand a[i] stores catalan number when there are i nodes.but what is b[] used for?Thanks,yoyo 回复 更多评论
@yoyo b[i]=a[1]+a[2]+...a[i]; 回复 更多评论
@abilitytao:-) I can know it from code, while no idea what's the purpose of b[i] = a[1]+...a[i]Thanks for quick replying.yoyo 回复 更多评论
@yoyo the intention is to find the node number of the the tree that you want. you are not chinese? or you can understand it through my notes by Chinese. 回复 更多评论
Powered by: C++博客 Copyright © abilitytao