本文整理汇总了C++中BSTree::count_leaf_nodes方法的典型用法代码示例。如果您正苦于以下问题:C++ BSTree::count_leaf_nodes方法的具体用法?C++ BSTree::count_leaf_nodes怎么用?C++ BSTree::count_leaf_nodes使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BSTree
的用法示例。
在下文中一共展示了BSTree::count_leaf_nodes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main()
{
BSTree t;
int arr[10], count, ref[10] = { 1, 3, 2, 5, 6, 4 };
int i;
printf("testing insert...");
t.add(4);
t.add(2);
t.add(6);
t.add(1);
t.add(3);
t.add(5);
printf("[ok]\n");
printf("testing search...");
if (!t.search(1) || !t.search(2) || !t.search(3) ||
!t.search(4) || !t.search(5) || !t.search(6) )
goto fail;
if (t.search(8) || t.search(9))
goto fail;
printf("[ok]\n");
printf("testing get_postorder...");
t.get_postorder(arr, &count);
if (count != 6)
goto fail;
for (i = 0; i < 6; i++) {
if (arr[i] != ref[i])
goto fail;
}
printf("[ok]\n");
printf("testing count_leaf_nodes...");
if (t.count_leaf_nodes() != 3)
goto fail;
printf("[ok]\n");
return 0;
fail:
printf("[failed]\n");
return -1;
}
示例2: main
int main()
{
BSTree b;
printf("\nAdding elements...");
b.add(1);
b.add(2);
b.add(3);
b.add(4);
b.add(5);
b.add(6);
b.add(8);
b.add(7);
b.add(9);
printf("[ok]\n");
printf("Chenking count_leaf_nodes...");
if(b.count_leaf_nodes() != 2)
goto fail;
printf("[ok]\n");
return 0;
fail:
printf("[failed]\n");
return -1;
}