We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4429d38 commit b35b721Copy full SHA for b35b721
data_structures/stack.hpp
@@ -1,15 +1,16 @@
1
/**
2
* @file
3
* @author danghai
4
+ * @author [Piotr Idzik](https://github.com/vil02)
5
* @brief This class specifies the basic operation on a stack as a linked list
6
**/
7
#ifndef DATA_STRUCTURES_STACK_HPP_
8
#define DATA_STRUCTURES_STACK_HPP_
9
-#include <cassert>
10
-#include <iostream>
+#include <cassert> /// for assert
11
+#include <iostream> /// for IO operations
12
#include <memory>
-#include <vector>
13
+#include <vector> /// for std::vector
14
15
/** Definition of the node as a linked-list
16
* \tparam ValueType type of data nodes of the linked list should contain
0 commit comments