https://github.com/samuellucas97/data-structures-in-cplusplus
My implementation of some Data Structures in C++.
https://github.com/samuellucas97/data-structures-in-cplusplus
dictionary doxygen-documentation hashtable linkedlist makefile vector
Last synced: 11 months ago
JSON representation
My implementation of some Data Structures in C++.
- Host: GitHub
- URL: https://github.com/samuellucas97/data-structures-in-cplusplus
- Owner: Samuellucas97
- License: mit
- Created: 2018-03-12T17:27:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-09-21T06:47:58.000Z (almost 7 years ago)
- Last Synced: 2025-05-16T19:09:26.741Z (about 1 year ago)
- Topics: dictionary, doxygen-documentation, hashtable, linkedlist, makefile, vector
- Language: C++
- Homepage:
- Size: 671 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data Structures in C++
This repository contains the activities and exercises perfomed in the discipline of ***Data Structures I***
of the semester 2017.2 and ***Data Structures II*** of the bachareled in Information Technology (**UFRN**).
In addition, it contains the other projects made by this author, carefully documented. Therefore, the projects are organized in the following folders:
- Dictionary
- HashTable
- LinkedList
- Vector
## What is Data Structure?
In computer science, an data structure is a particular way of storing and organizing data on a computer so that it can be used efficiently, facilitating its search and modification. Data structures and algorithms are fundamental themes of computer science, being used in the most diverse areas of knowledge and with the most different purposes of application. It is known that algorithms manipulate data. When these data are organized (_arranged_) in a coherent way, they characterize a form, a data structure. The organization and methods for manipulating this structure is that it gives it uniqueness (and strategic advantages, such as minimizing the space occupied in RAM), and (**potentially**) making the source code leaner and simpler. [Wikipedia]
[Wikipedia]: https://en.wikipedia.org/wiki/Data_structure
## Minimum requirements
Compilador C++ 11 (**g++**), GNU debugger (**GDB**), Valgrind e Doxygen.
Obs.: Para usuários Linux, tanto o g++ quanto o gdb são ambos nativo, faltando apenas instalar o Doxygen
e o Valgrind. Porém, caso deseje usar o gdb no Windows será necessário instalar o MinGW.
Download Doxygen (**UBUNTU**):
```$ sudo apt-get install doxygen```
Download Valgrind (**UBUNTU**):
```sudo apt-get install valgrind```
## Author
Samuel Lucas de Moura Ferino ( _samuel1797@gmail.com_ )