浙大數據結構——3.1樹與樹的表示

什麼是樹? 客觀世界中許多事物存在層次關係 查找 根據某個關鍵字K,從集合R中找出關鍵字與K相同的記錄。 1、靜態查找 2、動態查找 靜態查找 1、順序查找 #define MAXSIZE 10; typedef struct LNode *List; struct LNode{ ElementType Element[MAXSIZE]; int length; }; int Sequent
相關文章
相關標籤/搜索