chore: use iwyu on sorting/**.cpp

This commit is contained in:
realstealthninja
2024-09-13 15:39:40 +05:30
parent 19d136ae0f
commit a290ae7ee2
29 changed files with 186 additions and 142 deletions

View File

@@ -44,12 +44,15 @@
* @author [Nitin Sharma](https://github.com/foo290)
*/
#include <algorithm> /// for std::is_sorted(), std::swap()
#include <array> /// for std::array
#include <cassert> /// for assert
#include <ctime> /// for initializing random number generator
#include <iostream> /// for IO operations
#include <tuple> /// for returning multiple values form a function at once
#include <stdint.h> // for int64_t
#include <stdlib.h> // for rand, srand
#include <algorithm> // for is_sorted
#include <array> // for array
#include <cassert> // for assert
#include <ctime> // for size_t, time
#include <iostream> // for basic_ostream, operator<<, char_traits, cout, endl
#include <tuple> // for make_tuple, tie, tuple
#include <utility> // for swap
/**
* @namespace sorting