mirror of
https://github.com/krahets/hello-algo.git
synced 2026-06-15 22:57:48 +08:00
* Add Russian docs site baseline * Add Russian localized codebase * Polish Russian code wording * Update ru code translation. * Update code translation and chapter covers. * Fix pythontutor extraction. * Add README and landing page. * placeholder of profiles * Use figures of English version * Remove chapter paperbook
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
/**
|
||
* File: binary_tree.cs
|
||
* Created Time: 2022-12-23
|
||
* Author: haptear (haptear@hotmail.com)
|
||
*/
|
||
|
||
namespace hello_algo.chapter_tree;
|
||
|
||
public class binary_tree {
|
||
[Test]
|
||
public void Test() {
|
||
/* Инициализация двоичного дерева */
|
||
// Инициализация узла
|
||
TreeNode n1 = new(1);
|
||
TreeNode n2 = new(2);
|
||
TreeNode n3 = new(3);
|
||
TreeNode n4 = new(4);
|
||
TreeNode n5 = new(5);
|
||
// Построить связи между узлами (указатели)
|
||
n1.left = n2;
|
||
n1.right = n3;
|
||
n2.left = n4;
|
||
n2.right = n5;
|
||
Console.WriteLine("\nИнициализация двоичного дерева\n");
|
||
PrintUtil.PrintTree(n1);
|
||
|
||
/* Вставка и удаление узлов */
|
||
TreeNode P = new(0);
|
||
// Вставить узел P между n1 -> n2
|
||
n1.left = P;
|
||
P.left = n2;
|
||
Console.WriteLine("\nПосле вставки узла P\n");
|
||
PrintUtil.PrintTree(n1);
|
||
// Удалить узел P
|
||
n1.left = n2;
|
||
Console.WriteLine("\nПосле удаления узла P\n");
|
||
PrintUtil.PrintTree(n1);
|
||
}
|
||
}
|