前面介紹學習的大可能是線性表相關的內容,把指針搞懂後其實也沒有什麼難度。規則相對是簡單的。java
再數據結構中樹
、圖
纔是數據結構標誌性產物,(線性表大多都現成api可使用),由於樹的難度相比線性表大一些
而且樹的拓展性很強
,你所知道的樹、二叉樹、二叉排序樹,AVL樹,線索二叉樹、紅黑樹、B數、線段樹等等高級數據結構。然而二叉排序樹是全部的基礎,因此完全搞懂二叉排序樹也是很是重要的。node
參考王道數據結構算法
二叉樹也是樹的一種,而二叉排序樹又是二叉樹的一種。後端
遞歸
的,將樹的任何一個節點以及節點下的節點都能組合成一個新的樹
。而且不少操做基於遞歸完成。沒有前驅節點
,只有子節點(0個或多個均可以)第1層
(有的也說第0層)。而樹的高度就是層數最高(上圖層數開始爲1)節點的層數父節點
:就是連接該節點的上一層節點,孩子節點:
和父節點對應,上下關係。而祖先節點
是父節點的父節點(或者祖先)節點。兄弟節點:
擁有同一個父節點的節點們!孩子節點
的個數(是孩子不是子孫).而樹的度(最大)節點的度。同時,若是度大於0就成爲分支節點
,度等於0就成爲葉子節點
(沒有子孫)。相關性質:api
等比數列求和
)二叉樹是一樹的一種,但應用比較多,因此須要深刻學習。二叉樹的每一個節點最多隻有兩個節點
。數據結構
二叉樹與度爲2的樹的區別:函數
幾種特殊二叉樹:學習
二叉樹性質:
相比樹,二叉樹的性質就是樹的性質更加具體化。this
度爲2的節點樹+1
.原本一個節點若是度爲1.那麼一直延續就一個葉子,但若是出現一個度爲2除了延續原來的一個節點,會多出一個節點須要維繫。因此到最後會多出一個葉子
。徹底二叉樹
若從左往右,從上到下編號如圖:前面鋪墊那麼多,我們言歸正傳
,詳細實現一個二叉排序樹。首先要了解二叉排序樹的規則:spa
15,6,23,7,4,71,5,50
會造成下圖順序首先二叉排序樹是由若干節點
構成。
left,right,和value
。其中left和right是左右指針,而value是儲存的數據,這裏用int 類型。node
類構造爲:
class node {//結點 public int value; public node left; public node right; public node() { } public node(int value) { this.value=value; this.left=null; this.right=null; } public node(int value,node l,node r) { this.value=value; this.left=l; this.right=r; } }
既然節點構造好了,那麼就須要節點等其餘信息構形成樹。有了鏈表構造經驗,很容易得知一棵樹最主要的仍是root根節點
。
因此樹的構造爲:
public class BinarySortTree { node root;//根 public BinarySortTree() {root=null;} public void makeEmpty()//變空 {root=null;} public boolean isEmpty()//查看是否爲空 {return root==null;} //各類方法 }
節點參數
(也就是函數對每個節點都能有效
)findmin()找到最小節點:
findmax()找到最大節點:
public node findmin(node t)//查找最小返回值是node,調用查看結果時須要.value { if(t==null) {return null;} else if(t.left==null) {return t;} else return(findmin(t.left)); } public node findmax(node t)//查找最大 { if(t==null) {return null;} else if(t.right==null) {return t;} else return(findmax(t.right)); }
這裏的意思是查找二叉查找樹中是否存在x。
路徑的過程當中遇到x
。由於你能夠若是已經存在的點,再它的前方會走一次和它相同的步驟。也就是說前面固定,我來1w次x,那麼x都會到達這個位置
。那麼咱們直接進行查找比較便可!public boolean isContains(int x)//是否存在 { node current=root; if(root==null) {return false;} while(current.value!=x&¤t!=null) { if(x<current.value) {current=current.left;} if(x>current.value) {current=current.right;} if(current==null) {return false;}//在裏面判斷若是超直接返回 } //若是在這個位置判斷是否爲空會致使current.value不存在報錯 if(current.value==x) {return true;} return false; }
插入的思想和前面isContains
相似。找到本身的位置(空位置)插入。可是又不太同樣。你可能會疑問爲何不直接找到最後一個空,而後將current賦值過去current=new node(x)
。這樣的化current就至關於指向一個new node(x)節點。和樹就脫離關係,因此要提早斷定是否爲空,若爲空將它的left或者right
賦值便可。
public node insert(int x)// 插入 t是root的引用 { node current = root; if (root == null) { root = new node(x); return root; } while (current != null) { if (x < current.value) { if (current.left == null) { return current.left = new node(x);} else current = current.left;} else if (x > current.value) { if (current.right == null) { return current.right = new node(x);} else current = current.right; } } return current;//其中用不到 }
插入51
刪除操做算是一個相對較難理解的操做了。
刪除節點規則:
分類討論
,若是有兩個兒子,就選右邊兒子的最左側那個點替代
,而後再子樹刪除替代的那個點
。若是是一個節點,判斷是左空仍是右空,將這個點指向不空的那個
。不空的那個就替代了這個節點。入股左右都是空,那麼他本身變空null就刪除了。刪除的節點沒有子孫:
節點=null
便可。左節點爲空、右節點爲空:
刪除點的子節點放到被刪除位置
便可。左右節點均不空
涉及
到一個策略問題。19或者71
節點填補。雖然能夠保證部分側大於小於該節點,可是會引發合併的混亂
.好比你若用71替代23節點。那麼你須要考慮三個節點(19,50,75)
之間如何處理,還要考慮他們是否滿,是否有子女。這是個極其複雜的過程。選一個最大的點
讓左半枝都比它小。咱們分析左支最大的點
必定是子樹最右側
!直接替換值,而後將最底層的點刪除
便可。可是若是
這個節點有左枝
。咱們該怎麼辦?知足的節點替換
了。會產生什麼樣的後果?19
的點!那麼這個問題又轉化爲刪除節點的問題,查找左子樹中有沒有可以替代19
這個點的。因此整個刪除算法流程爲:
代碼爲
public node remove(int x, node t)// 刪除節點 { if (t == null) { return null; } if (x < t.value) { t.left = remove(x, t.left); } else if (x > t.value) { t.right = remove(x, t.right); } else if (t.left != null && t.right != null)// 左右節點均不空 { t.value = findmin(t.right).value;// 找到右側最小值替代 t.right = remove(t.value, t.right); } else // 左右單空或者左右都空 { if (t.left == null && t.right == null) { t = null; } else if (t.right != null) { t = t.right; } else if (t.left != null) { t = t.left; } return t; } return t; }
二叉排序樹完整代碼爲:
package 二叉樹; import java.util.ArrayDeque; import java.util.Queue; import java.util.Stack; public class BinarySortTree { class node {// 結點 public int value; public node left; public node right; public node() { } public node(int value) { this.value = value; this.left = null; this.right = null; } public node(int value, node l, node r) { this.value = value; this.left = l; this.right = r; } } node root;// 根 public BinarySortTree() { root = null; } public void makeEmpty()// 變空 { root = null; } public boolean isEmpty()// 查看是否爲空 { return root == null; } public node findmin(node t)// 查找最小返回值是node,調用查看結果時須要.value { if (t == null) { return null; } else if (t.left == null) { return t; } else return (findmin(t.left)); } public node findmax(node t)// 查找最大 { if (t == null) { return null; } else if (t.right == null) { return t; } else return (findmax(t.right)); } public boolean isContains(int x)// 是否存在 { node current = root; if (root == null) { return false; } while (current.value != x && current != null) { if (x < current.value) { current = current.left; } if (x > current.value) { current = current.right; } if (current == null) { return false; } // 在裏面判斷若是超直接返回 } // 若是在這個位置判斷是否爲空會致使current.value不存在報錯 if (current.value == x) { return true; } return false; }