資料結構,結點的定義。

  • 作者:由 匿名使用者 發表于 攝影
  • 2022-03-19

資料結構,結點的定義。 Aman 1級 2015-05-05 回答

typedef struct Bnode

{

int data;

struct Bnode *lch; //lch short for left children 指向左子樹的指標

struct Bnode *rch;

}Bnode;

Bnode *s[max]; //這裡是什麼意思 定義一個數組,長度為max,元素型別為 Bnode*

Top