Skip to content

thomaslinck/data-structures-classes

Repository files navigation

Estruturas de dados 1

Repository for Data Structures classes in Feevale.

Exercises:

Exercise 1 - Imprimir ASCII

Exercise to print the ASCII table in the console using C++.

It is composed of an application class and an interator (actually it is only a conceptual iterator since it does not really iterate on anything).

The ideia is just to practice some initial C++ object oriented concepts.

Exercise to create a linked list of touristic attractions. It also has function to manipulate the list, such as adding, deleting and searching. This is made with OO concepts.

Exercise to create a linked list of a generic node with only one value. It also has function to manipulate the list, such as adding, deleting and searching. This is purely made in C, without any OO.

Exercise 4 - Queues and Stacks

Exercise to create a queue to simulate an airport control system. It was developed in python and allows the user to choose between a linked or sequential list in runtime.

Exercise 5 - Sorting Algorithms

Different sorting algorithms to sort lists. The algorithms are:

A binary searching algorithm.

About

Repository for Data Structures classes in Feevale.

Topics

Resources

Stars

Watchers

Forks