91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

C#如何實現二叉排序樹

發布時間:2021-05-17 10:27:06 來源:億速云 閱讀:200 作者:小新 欄目:編程語言

這篇文章主要介紹了C#如何實現二叉排序樹,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

二叉排序樹,又稱為二叉查找樹。它或者是一顆空樹,或者是具有下列性質的二叉樹:

  • 若它的左子樹不為空。則左子樹上所有的結點的值均小于跟的結點值

  • 若它的右子樹部位空,則右子樹的所有結點值均大于它的根結點的值

  • 它的左右子樹也分別是二叉排序樹

1,排序方便
2,查找方便
3,便于插入和刪除

C#如何實現二叉排序樹

C#鏈式存儲二叉排序樹,實現簡單的排序,以及查找,具體代碼如下:

namespace _2_1_3二叉排序樹
{
  /// <summary>
  /// 結點類
  /// </summary>
  class BSNode
  {
    //結點
    public BSNode LeftChild { get; set; }
    public BSNode RightChild { get; set; }
    public BSNode Parent { get; set; }
    public int Data { get; set; }
    // 構造方法
    public BSNode(){}
    public BSNode(int item)
    {
      this.Data = item;
    }
  }
}
using System;
namespace _2_1_3二叉排序樹
{
  /// <summary>
  /// 二叉排序樹
  /// </summary>
  class BSTree
  {
    BSNode root = null;
    /// <summary>
    /// 添加數據
    /// </summary>
    public void Add(int item)
    {
      //創建新結點
      BSNode newNode = new BSNode(item);
      if (root == null)     //若為空,則創建為根結點
      {
        root = newNode;
      }
      else
      {
        BSNode temp = root;
        while (true)
        {
          if (item >= temp.Data) //放在temp結點的右邊
          {
            if (temp.RightChild == null)
            {
              temp.RightChild = newNode;
              newNode.Parent = temp;
              break;
            }
            else
            {
              temp = temp.RightChild;
            }
          }
          else          //放在temp結點的左邊
          {
            if (temp.LeftChild == null)
            {
              temp.LeftChild = newNode;
              newNode.Parent = temp;
              break;
            }
            else
            {
              temp = temp.LeftChild;
            }
          }
        }
      }
    }
    /// <summary>
    /// 中序遍歷二叉樹
    /// </summary>
    public void MiddleBianli()
    {
      MiddleBianli(root);
    }
    //遞歸方式中序遍歷樹
    private void MiddleBianli(BSNode node)
    {
      if (node == null) return;
      MiddleBianli(node.LeftChild);
      Console.Write(node.Data + " ");
      MiddleBianli(node.RightChild);
    }
    /// <summary>
    ///查找方法-1
    /// </summary>
    public bool Find1(int item)
    {
      return Find(item, root);
    }
    private bool Find(int item, BSNode node)
    {
      if (node == null) { return false; }
      if (node.Data == item)
      {
        return true;
      }
      else
      {
        //利用二叉排序樹的便利
        if (item > node.Data)
        {
          return Find(item, node.RightChild);
        }
        else
        {
          return Find(item, node.LeftChild);
        }
      }
    }
    /// <summary>
    /// 查找方法-2
    /// </summary>
    /// <param name="item"></param>
    /// <returns></returns>
    public bool Find2(int item)
    {
      BSNode temp = root;
      while (true)
      {
        if (temp == null) return false;
        if (temp.Data == item) return true;
        if (item > temp.Data)
        {
          temp = temp.RightChild;
        }
        else
        {
          temp = temp.LeftChild;
        }
      }
    }
    public bool Delete(int item)
    {
      BSNode temp = root;
      while (true)
      {
        if (temp == null) return false;
        if (temp.Data == item)
        {
          Delete(temp);
          return true;
        }
        if (item > temp.Data)
        {
          temp = temp.RightChild;
        }
        else
        {
          temp = temp.LeftChild;
        }
      }
    }
    public void Delete(BSNode node)
    {
      //葉子結點,即無子樹情況
      if (node.LeftChild == null && node.RightChild == null)
      {
        if (node.Parent == null)
        {
          root = null;
        }
        else if (node.Parent.LeftChild == node)
        {
          node.Parent.LeftChild = null;
        }
        else if (node.Parent.RightChild == node)
        {
          node.Parent.RightChild = null;
        }
        return;
      }
      //只有右子樹的情況
      if (node.LeftChild == null && node.RightChild != null)
      {
        node.Data = node.RightChild.Data;
        node.RightChild = null;
        return;
      }
      //只有左子樹的情況
      if (node.LeftChild != null && node.RightChild == null)
      {
        node.Data = node.LeftChild.Data;
        node.LeftChild = null;
        return;
      }
      //刪除的結點有左,右子樹
      BSNode temp = node.RightChild;
      while (true)
      {
        if (temp.LeftChild != null)
        {
          temp = temp.LeftChild;
        }
        else
        {
          break;
        }
      }
      node.Data = temp.Data;
      Delete(temp);
    }
  }
}
using System;
namespace _2_1_3二叉排序樹
{
  /// <summary>
  /// 測試類
  /// </summary>
  class Program
  {
    static void Main(string[] args)
    {
      BSTree tree = new BSTree();
      int[] data = {62,58,28,47,73,99,35,51,93,37 };

      foreach (int item in data)
      {
        tree.Add(item);
      }
      Console.Write("中序遍歷的結果:");
      tree.MiddleBianli();
      Console.WriteLine();
      Console.WriteLine("Find-1方法查找62是否存在:" + tree.Find1(62));
      Console.WriteLine("Find-2方法查找62是否存在:" + tree.Find2(62));
      Console.WriteLine("Find-1方法查找63是否存在:" + tree.Find1(63)); 
      Console.WriteLine("Find-2方法查找63是否存在:" + tree.Find2(63));
      Console.WriteLine("刪除根結點后的結果:");
      tree.Delete(62);
      tree.MiddleBianli();
      Console.ReadKey();
    }
  }
}

C#如何實現二叉排序樹

C#是什么

C#是一個簡單、通用、面向對象的編程語言,它由微軟Microsoft開發,繼承了C和C++強大功能,并且去掉了一些它們的復雜特性,C#綜合了VB簡單的可視化操作和C++的高運行效率,以其強大的操作能力、優雅的語法風格、創新的語言特性和便捷的面向組件編程從而成為.NET開發的首選語言,但它不適用于編寫時間急迫或性能非常高的代碼,因為C#缺乏性能極高的應用程序所需要的關鍵功能。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“C#如何實現二叉排序樹”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

临城县| 安阳市| 湖南省| 永嘉县| 兴化市| 临沭县| 宜川县| 阳春市| 东兰县| 都昌县| 岐山县| 二连浩特市| 栖霞市| 噶尔县| 仲巴县| 唐山市| 明光市| 嘉禾县| 那坡县| 平凉市| 沙河市| 奎屯市| 天气| 河间市| 武安市| 冀州市| 永宁县| 南投县| 红河县| 始兴县| 宿迁市| 牟定县| 增城市| 天津市| 石阡县| 嘉荫县| 湄潭县| 奉贤区| 天等县| 广西| 青冈县|