docs: update authors and include comments

apply suggestions of @Panquesito7

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Piotr Idzik 2022-12-28 22:49:24 +01:00 committed by GitHub
parent 4429d38fd1
commit b35b721486
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,16 @@
/** /**
* @file * @file
* @author danghai * @author danghai
* @author [Piotr Idzik](https://github.com/vil02)
* @brief This class specifies the basic operation on a stack as a linked list * @brief This class specifies the basic operation on a stack as a linked list
**/ **/
#ifndef DATA_STRUCTURES_STACK_HPP_ #ifndef DATA_STRUCTURES_STACK_HPP_
#define DATA_STRUCTURES_STACK_HPP_ #define DATA_STRUCTURES_STACK_HPP_
#include <cassert> #include <cassert> /// for assert
#include <iostream> #include <iostream> /// for IO operations
#include <memory> #include <memory>
#include <vector> #include <vector> /// for std::vector
/** Definition of the node as a linked-list /** Definition of the node as a linked-list
* \tparam ValueType type of data nodes of the linked list should contain * \tparam ValueType type of data nodes of the linked list should contain