溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C語言 中二叉查找樹的原理是什么

發(fā)布時間:2021-07-02 16:55:16 來源:億速云 閱讀:158 作者:Leah 欄目:編程語言

C語言 中二叉查找樹的原理是什么,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

二叉查找樹性質

1、二叉樹

每個樹的節(jié)點最多有兩個子節(jié)點的樹叫做二叉樹。

C語言 中二叉查找樹的原理是什么

2、二叉查找樹

一顆二叉查找樹是按照二叉樹的結構來組織的,并且滿足一下性質:

一個節(jié)點所有左子樹上的節(jié)點不大于蓋節(jié)點,所有右子樹的節(jié)點不小于該節(jié)點。

對查找樹的操作查詢,插入,刪除等操作的時間復雜度和樹的高度成正比, 因此,構建高效的查找樹尤為重要。

查找樹的遍歷

先序遍歷

查找樹的遍歷可以很簡單的采用遞歸的方法來實現(xiàn)。

struct list
{
  struct list *left;//左子樹
  struct list *right;//右子樹
  int a;//結點的值
};
void preorder(struct list *t)//t為根節(jié)點的指針
{
  if(t!=NULL)
  {
    printf("%d,",t->a);
    preorder(t->left);
    perorder(t->right);
  }
}

中序遍歷

struct list
{
  struct list *left;//左子樹
  struct list *right;//右子樹
  int a;//結點的值
};
void preorder(struct list *t)//t為根節(jié)點的指針
{
  if(t!=NULL)
  {
    preorder(t->left);
    printf("%d,",t->a);
    perorder(t->right);
  }
}

后序遍歷

struct list
{
  struct list *left;//左子樹
  struct list *right;//右子樹
  int a;//結點的值
};
void preorder(struct list *t)//t為根節(jié)點的指針
{
  if(t!=NULL)
  {
    preorder(t->left);
    perorder(t->right);
    printf("%d,",t->a);
  }
}

查找樹的搜索

給定關鍵字k,進行搜索,返回結點的指針。

struct list
{
  struct list *left;//左子樹
  struct list *right;//右子樹
  int a;//結點的值
};
struct list * search(struct list *t,int k)
{
  if(t==NULL||t->a==k)
    return t;
  if(t->a<k)
    search(t->right);
  else
    search(t>left);
};

也可以用非遞歸的形式進行查找

struct list
{
  struct list *left;//左子樹
  struct list *right;//右子樹
  int a;//結點的值
};
struct list * search(struct list *t,int k)
{
  while(true)
  {
    if(t==NULL||t->a==k)
    {
      return t;
      break;
    }
    if(t->a<k)
      t=t->rigth;
    else
      t=t->left;

  }
};

最大值和最小值查詢

根據(jù)查找樹的性質,最小值在最左邊的結點,最大值的最右邊的 結點,因此,可以直接找到。

下面是最大值的例子:

{
  struct list *left;//左子樹
  struct list *right;//右子樹
  int a;//結點的值
};
struct lsit *max_tree(struct lsit *t)
{
  while(t!=NULL)
  {
    t=t->right;
  }
  return t;
};

查找樹的插入和刪除

插入和刪除不能破壞查找樹的性質,因此只需要根據(jù)性質,在樹中找到相應的位置就可以進行插入和刪除操作。

struct list
{
  struct list *left;//左子樹
  struct list *right;//右子樹
  int a;//結點的值
};
void insert(struct list *root,struct list * k)
{
  struct list *y,*x;
  x=root;
  while(x!=NULL)
  {
    y=x;
    if(k->a<x->a)
    {
      x=x->left;
    }
    else
      x=x->right;
  }
  if(y==NULL)
    root=k;
  else if(k->a<y->a)
    y->left=k;
  else
    y->right=k;

}

關于C語言 中二叉查找樹的原理是什么問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業(yè)資訊頻道了解更多相關知識。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI