docs: explain usage of standard headers

This commit is contained in:
piotr.idzik
2023-01-30 21:38:36 +01:00
parent 2decd5e04c
commit 5ce6bf0157

View File

@@ -6,9 +6,9 @@
* \warning This program is a poor implementation and does not utilize any of
* the C++ STL features.
*/
#include <algorithm>
#include <iostream>
#include <queue>
#include <algorithm> // for std::max
#include <iostream> // for std::cout
#include <queue> // for std::queue
using node = struct node {
int data;