当前学科:数据结构
  • 题目: 填空题
    写出下面算法的功能。Bitree*function(Bitree*bt){Bitree*t,*t1,*t2;if(bt==NULL)t=NULL;else{t=(Bitree*)malloc(sizeof(Bitree));t->data=bt->data;t1=function(bt->left);t2=function(bt->right);t->left=t2;t->right=t1;}return(t);}

      答案: <查看本题扣1积分>

      查看答案

      答案不对?请尝试站内搜索