阿摩線上測驗 登入

申論題資訊

試卷:104年 - 104 地方政府特種考試_三等_統計:資料處理#35476
科目:資料處理
年份:104年
排序:0

申論題內容

四、一個 binary tree 的 node 定義如下: struct node { int value; struct node *left, *right; }; 寫出一個 recursive function,int maxvalue(struct node *p),找出一個 binary tree 中的最 大值。(20 分)