An open API service indexing awesome lists of open source software.

https://github.com/lesiaukr/goit-algo-hw-07

Master's | Basic Algorithms & Data structures | Module 7 | Trees and Balancing
https://github.com/lesiaukr/goit-algo-hw-07

avl-tree binary-search-tree goit-algo-hw-07

Last synced: 7 months ago
JSON representation

Master's | Basic Algorithms & Data structures | Module 7 | Trees and Balancing

Awesome Lists containing this project

README

          

# goit-algo-hw-07

# Homework | Module 7 | Trees and Balancing

## Task 1

Write an algorithm (function) that finds the maximum value in a binary search tree or AVL tree. Use any implementation of the tree from your lecture notes or another source.

## Task 2

Write an algorithm (function) that finds the minimum value in a binary search tree or AVL tree. Use any implementation of the tree from your lecture notes or another source.

## Task 3

Write an algorithm (function) that finds the sum of all values in a binary search tree or AVL tree. Use any implementation of the tree from your lecture notes or another source.