mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-13 07:25:42 +08:00
docs: add missing [in]
This commit is contained in:
@@ -158,7 +158,7 @@ void deleteAllNodes(const node *const root) {
|
||||
|
||||
/**
|
||||
* @brief prints given tree in the LevelOrder
|
||||
* @param root of the tree
|
||||
* @param[in] root of the tree
|
||||
*/
|
||||
void levelOrder(node *root) {
|
||||
std::queue<node *> q;
|
||||
|
||||
Reference in New Issue
Block a user