Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 2.84 KB

README.md

File metadata and controls

37 lines (27 loc) · 2.84 KB

Algorithm and Data Structures - Practical Work 2

This repository contains scripts for the Algorithm and Data Structures Practical Work 2.
Tecnicatura Universitaria en Procesamiento y Explotación de Datos, Facultad de Ingeniería UNER. Brehm, Ré. 2022

Exercise 1: Emergency Room

Description

Emergency Room Management using a minimum binary heap structure. Patients are prioritized and served based on their critical risk level, with earliest arrivals attended first in case of identical risk levels. Complexity for insertion and removal: Avg: O(log n), Best: O(1), Worst: O(log n).

Files

Exercise 2: Temperaturas_DB

Description

The temperature database exercise employs an AVL tree, ensuring efficient storage and retrieval of temperature records through self-balancing properties.

Files

Exercise 3: Transportation Service

Description

Involves loading data into a graph, using a modified Dijkstra's algorithm with priority queues to determine the route with the highest load capacity and lowest cost from the initial city to the destination city.

Files