golanglabs

Log | Files | Refs | README | LICENSE

commit 2723fdbe8576cf8b2eda44ee2f3e2f45323f23af
parent 37a52392f985c60a9258552d3314c385f22353f2
Author: William Lindholm <william_lindholm@outlook.com>
Date:   Sat,  6 Apr 2024 23:53:44 +0200

Implemented tree strucuture with bfs insert.

Diffstat:
Asrc/dsa/heap.go | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/dsa/heap.go b/src/dsa/heap.go @@ -0,0 +1,7 @@ +package dsa + +type MinHeap struct { +} + +type MaxHeap struct { +}