单项选择题

设有下列二叉树:


对此二叉树后序遍历的结果是

<上一题 目录 下一题>
热门 试题

单项选择题
有以下程序 void swapl(int c[]) int t; t=c[0];c[0]=c[1];c[1]=t; void swap2(int c0,int c1) int t; t=c0;c0=c1;c1=t; main() int a[2]=3,5,b[2]=3,5; swapl(
A.;swap2(b[0],b[1]);
单项选择题
一个算法应该具有“确定性”等5个特性,下面对另外4个特性的描述中错误的是
A.有零个或多个输入
B.有零个或多个输出
C.有穷性
D.可行性
相关试题
  • 有以下程序 #include <stdio.h> mai...
  • 有以下程序 #include <stringh> main...
  • 下面程序的功能是输出以下形式的金字塔图案...
  • 有以下程序 int f(int b[][4]) ...
  • 有以下程序(提示:程序中fseek(fp,-2L...