mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 12:46:31 +08:00
5f7385c8a3
* First commit * Update mkdocs.yml * Translate all the docs to traditional Chinese * Translate the code files. * Translate the docker file * Fix mkdocs.yml * Translate all the figures from SC to TC * 二叉搜尋樹 -> 二元搜尋樹 * Update terminology. * Update terminology * 构造函数/构造方法 -> 建構子 异或 -> 互斥或 * 擴充套件 -> 擴展 * constant - 常量 - 常數 * 類 -> 類別 * AVL -> AVL 樹 * 數組 -> 陣列 * 係統 -> 系統 斐波那契數列 -> 費波那契數列 運算元量 -> 運算量 引數 -> 參數 * 聯絡 -> 關聯 * 麵試 -> 面試 * 面向物件 -> 物件導向 歸併排序 -> 合併排序 范式 -> 範式 * Fix 算法 -> 演算法 * 錶示 -> 表示 反碼 -> 一補數 補碼 -> 二補數 列列尾部 -> 佇列尾部 區域性性 -> 區域性 一摞 -> 一疊 * Synchronize with main branch * 賬號 -> 帳號 推匯 -> 推導 * Sync with main branch * First commit * Update mkdocs.yml * Translate all the docs to traditional Chinese * Translate the code files. * Translate the docker file * Fix mkdocs.yml * Translate all the figures from SC to TC * 二叉搜尋樹 -> 二元搜尋樹 * Update terminology * 构造函数/构造方法 -> 建構子 异或 -> 互斥或 * 擴充套件 -> 擴展 * constant - 常量 - 常數 * 類 -> 類別 * AVL -> AVL 樹 * 數組 -> 陣列 * 係統 -> 系統 斐波那契數列 -> 費波那契數列 運算元量 -> 運算量 引數 -> 參數 * 聯絡 -> 關聯 * 麵試 -> 面試 * 面向物件 -> 物件導向 歸併排序 -> 合併排序 范式 -> 範式 * Fix 算法 -> 演算法 * 錶示 -> 表示 反碼 -> 一補數 補碼 -> 二補數 列列尾部 -> 佇列尾部 區域性性 -> 區域性 一摞 -> 一疊 * Synchronize with main branch * 賬號 -> 帳號 推匯 -> 推導 * Sync with main branch * Update terminology.md * 操作数量(num. of operations)-> 操作數量 * 字首和->前綴和 * Update figures * 歸 -> 迴 記憶體洩漏 -> 記憶體流失 * Fix the bug of the file filter * 支援 -> 支持 Add zh-Hant/README.md * Add the zh-Hant chapter covers. Bug fixes. * 外掛 -> 擴充功能 * Add the landing page for zh-Hant version * Unify the font of the chapter covers for the zh, en, and zh-Hant version * Move zh-Hant/ to zh-hant/ * Translate terminology.md to traditional Chinese
182 lines
No EOL
6.5 KiB
Zig
182 lines
No EOL
6.5 KiB
Zig
// File: binary_search_tree.zig
|
|
// Created Time: 2023-01-15
|
|
// Author: codingonion (coderonion@gmail.com)
|
|
|
|
const std = @import("std");
|
|
const inc = @import("include");
|
|
|
|
// 二元搜尋樹
|
|
pub fn BinarySearchTree(comptime T: type) type {
|
|
return struct {
|
|
const Self = @This();
|
|
|
|
root: ?*inc.TreeNode(T) = null,
|
|
mem_arena: ?std.heap.ArenaAllocator = null,
|
|
mem_allocator: std.mem.Allocator = undefined, // 記憶體分配器
|
|
|
|
// 建構子
|
|
pub fn init(self: *Self, allocator: std.mem.Allocator, nums: []T) !void {
|
|
if (self.mem_arena == null) {
|
|
self.mem_arena = std.heap.ArenaAllocator.init(allocator);
|
|
self.mem_allocator = self.mem_arena.?.allocator();
|
|
}
|
|
std.mem.sort(T, nums, {}, comptime std.sort.asc(T)); // 排序陣列
|
|
self.root = try self.buildTree(nums, 0, nums.len - 1); // 構建二元搜尋樹
|
|
}
|
|
|
|
// 析構方法
|
|
pub fn deinit(self: *Self) void {
|
|
if (self.mem_arena == null) return;
|
|
self.mem_arena.?.deinit();
|
|
}
|
|
|
|
// 構建二元搜尋樹
|
|
fn buildTree(self: *Self, nums: []T, i: usize, j: usize) !?*inc.TreeNode(T) {
|
|
if (i > j) return null;
|
|
// 將陣列中間節點作為根節點
|
|
var mid = (i + j) / 2;
|
|
var node = try self.mem_allocator.create(inc.TreeNode(T));
|
|
node.init(nums[mid]);
|
|
// 遞迴建立左子樹和右子樹
|
|
if (mid >= 1) node.left = try self.buildTree(nums, i, mid - 1);
|
|
node.right = try self.buildTree(nums, mid + 1, j);
|
|
return node;
|
|
}
|
|
|
|
// 獲取二元樹根節點
|
|
fn getRoot(self: *Self) ?*inc.TreeNode(T) {
|
|
return self.root;
|
|
}
|
|
|
|
// 查詢節點
|
|
fn search(self: *Self, num: T) ?*inc.TreeNode(T) {
|
|
var cur = self.root;
|
|
// 迴圈查詢,越過葉節點後跳出
|
|
while (cur != null) {
|
|
// 目標節點在 cur 的右子樹中
|
|
if (cur.?.val < num) {
|
|
cur = cur.?.right;
|
|
// 目標節點在 cur 的左子樹中
|
|
} else if (cur.?.val > num) {
|
|
cur = cur.?.left;
|
|
// 找到目標節點,跳出迴圈
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
// 返回目標節點
|
|
return cur;
|
|
}
|
|
|
|
// 插入節點
|
|
fn insert(self: *Self, num: T) !void {
|
|
// 若樹為空,則初始化根節點
|
|
if (self.root == null) {
|
|
self.root = try self.mem_allocator.create(inc.TreeNode(T));
|
|
return;
|
|
}
|
|
var cur = self.root;
|
|
var pre: ?*inc.TreeNode(T) = null;
|
|
// 迴圈查詢,越過葉節點後跳出
|
|
while (cur != null) {
|
|
// 找到重複節點,直接返回
|
|
if (cur.?.val == num) return;
|
|
pre = cur;
|
|
// 插入位置在 cur 的右子樹中
|
|
if (cur.?.val < num) {
|
|
cur = cur.?.right;
|
|
// 插入位置在 cur 的左子樹中
|
|
} else {
|
|
cur = cur.?.left;
|
|
}
|
|
}
|
|
// 插入節點
|
|
var node = try self.mem_allocator.create(inc.TreeNode(T));
|
|
node.init(num);
|
|
if (pre.?.val < num) {
|
|
pre.?.right = node;
|
|
} else {
|
|
pre.?.left = node;
|
|
}
|
|
}
|
|
|
|
// 刪除節點
|
|
fn remove(self: *Self, num: T) void {
|
|
// 若樹為空,直接提前返回
|
|
if (self.root == null) return;
|
|
var cur = self.root;
|
|
var pre: ?*inc.TreeNode(T) = null;
|
|
// 迴圈查詢,越過葉節點後跳出
|
|
while (cur != null) {
|
|
// 找到待刪除節點,跳出迴圈
|
|
if (cur.?.val == num) break;
|
|
pre = cur;
|
|
// 待刪除節點在 cur 的右子樹中
|
|
if (cur.?.val < num) {
|
|
cur = cur.?.right;
|
|
// 待刪除節點在 cur 的左子樹中
|
|
} else {
|
|
cur = cur.?.left;
|
|
}
|
|
}
|
|
// 若無待刪除節點,則直接返回
|
|
if (cur == null) return;
|
|
// 子節點數量 = 0 or 1
|
|
if (cur.?.left == null or cur.?.right == null) {
|
|
// 當子節點數量 = 0 / 1 時, child = null / 該子節點
|
|
var child = if (cur.?.left != null) cur.?.left else cur.?.right;
|
|
// 刪除節點 cur
|
|
if (pre.?.left == cur) {
|
|
pre.?.left = child;
|
|
} else {
|
|
pre.?.right = child;
|
|
}
|
|
// 子節點數量 = 2
|
|
} else {
|
|
// 獲取中序走訪中 cur 的下一個節點
|
|
var tmp = cur.?.right;
|
|
while (tmp.?.left != null) {
|
|
tmp = tmp.?.left;
|
|
}
|
|
var tmp_val = tmp.?.val;
|
|
// 遞迴刪除節點 tmp
|
|
self.remove(tmp.?.val);
|
|
// 用 tmp 覆蓋 cur
|
|
cur.?.val = tmp_val;
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
// Driver Code
|
|
pub fn main() !void {
|
|
// 初始化二元樹
|
|
var nums = [_]i32{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
|
|
var bst = BinarySearchTree(i32){};
|
|
try bst.init(std.heap.page_allocator, &nums);
|
|
defer bst.deinit();
|
|
std.debug.print("初始化的二元樹為\n", .{});
|
|
try inc.PrintUtil.printTree(bst.getRoot(), null, false);
|
|
|
|
// 查詢節點
|
|
var node = bst.search(7);
|
|
std.debug.print("\n查詢到的節點物件為 {any},節點值 = {}\n", .{node, node.?.val});
|
|
|
|
// 插入節點
|
|
try bst.insert(16);
|
|
std.debug.print("\n插入節點 16 後,二元樹為\n", .{});
|
|
try inc.PrintUtil.printTree(bst.getRoot(), null, false);
|
|
|
|
// 刪除節點
|
|
bst.remove(1);
|
|
std.debug.print("\n刪除節點 1 後,二元樹為\n", .{});
|
|
try inc.PrintUtil.printTree(bst.getRoot(), null, false);
|
|
bst.remove(2);
|
|
std.debug.print("\n刪除節點 2 後,二元樹為\n", .{});
|
|
try inc.PrintUtil.printTree(bst.getRoot(), null, false);
|
|
bst.remove(4);
|
|
std.debug.print("\n刪除節點 4 後,二元樹為\n", .{});
|
|
try inc.PrintUtil.printTree(bst.getRoot(), null, false);
|
|
|
|
_ = try std.io.getStdIn().reader().readByte();
|
|
} |