判斷一顆二叉樹是否爲徹底二叉樹

bool  isComplete(Node *root){     std::queue<Node *>  q;     q.push(root);     while (true){         Node *front = q.front();         q.pop();         //A B C D NULL E NULL NULL NULL         if (front
相關文章
相關標籤/搜索