生成随机数 + 树
Posted oieredsion
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成随机数 + 树相关的知识,希望对你有一定的参考价值。
rand() 是 0 到32767
防止出现0
(rand()%..+1)*(rand()%...+1)
srand(time(NULL))
生成树
for(int i=2;....)
j=rand()%(i-1)+1;
len=rand()%10000;
生成二叉树
j=i-rand()%2+1;
示例
多叉树和链
以上是关于生成随机数 + 树的主要内容,如果未能解决你的问题,请参考以下文章