随机数测试代码(抛硬币方式)

static unsigned int bitcount(unsigned int n) { unsigned int c =0 ; for (c =0; n; ++c) { n &= (n -1) ; } return c ; } void random_test(void) { // char *str = random_str
相关文章
相关标签/搜索