mirror of
https://github.com/krahets/hello-algo.git
synced 2026-04-15 02:40:58 +08:00
add zig codes for Section 'Hash Map', 'Linear Search' and 'Heap'
This commit is contained in:
@@ -21,4 +21,40 @@ pub fn TreeNode(comptime T: type) type {
|
||||
self.right = null;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// Generate a binary tree with an array
|
||||
pub fn arrToTree(comptime T: type, mem_allocator: std.mem.Allocator, list: []T) !?*TreeNode(T) {
|
||||
if (list.len == 0) return null;
|
||||
var root = try mem_allocator.create(TreeNode(T));
|
||||
root.init(list[0]);
|
||||
|
||||
const TailQueue = std.TailQueue(?*TreeNode(T));
|
||||
const TailQueueNode = std.TailQueue(?*TreeNode(T)).Node;
|
||||
var que = TailQueue{};
|
||||
var node_root = TailQueueNode{ .data = root };
|
||||
que.append(&node_root);
|
||||
var index: usize = 0;
|
||||
while (que.len > 0) {
|
||||
var node = que.popFirst();
|
||||
index += 1;
|
||||
if (index >= list.len) break;
|
||||
if (index < list.len) {
|
||||
var tmp = try mem_allocator.create(TreeNode(T));
|
||||
tmp.init(list[index]);
|
||||
node.?.data.?.left = tmp;
|
||||
var a = TailQueueNode{ .data = node.?.data.?.left };
|
||||
que.append(&a);
|
||||
}
|
||||
index += 1;
|
||||
if (index >= list.len) break;
|
||||
if (index < list.len) {
|
||||
var tmp = try mem_allocator.create(TreeNode(T));
|
||||
tmp.init(list[index]);
|
||||
node.?.data.?.right = tmp;
|
||||
var a = TailQueueNode{ .data = node.?.data.?.right };
|
||||
que.append(&a);
|
||||
}
|
||||
}
|
||||
return root;
|
||||
}
|
||||
Reference in New Issue
Block a user