<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>hanaaaaaachiru</author_name>
  <author_url>https://blog.hatena.ne.jp/hanaaaaaachiru/</author_url>
  <blog_title>はなちるのマイノート</blog_title>
  <blog_url>https://www.hanachiru-blog.com/</blog_url>
  <categories>
    <anon>C#</anon>
    <anon>アルゴリズム</anon>
  </categories>
  <description>はじめに 今回は2分探索木を実装してみようと思います。ja.wikipedia.org早速みていきましょう。 二分探索木 二分探索木は「左の子の値 ≤ 親の値 ≤ 右の子の値」という制約を持つ二分木のことを指します。 今回は以下の4つを実装します。 挿入 削除 要素を見つける 昇順で全ての要素を列挙する コード public class BinaryTree&lt;T&gt; where T : IComparable&lt;T&gt; { private Node _root; public BinaryTree() =&gt; _root = null; public BinaryTree(IEnumerable&lt;T&gt;…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fwww.hanachiru-blog.com%2Fentry%2F2020%2F08%2F27%2F120000&quot; title=&quot;【C#】2分探索木を実装してみる - はなちるのマイノート&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url>https://cdn-ak.f.st-hatena.com/images/fotolife/h/hanaaaaaachiru/20200803/20200803014126.png</image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2020-08-27 12:00:00</published>
  <title>【C#】2分探索木を実装してみる</title>
  <type>rich</type>
  <url>https://www.hanachiru-blog.com/entry/2020/08/27/120000</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
