// // Created by 李洋 on 2023/10/12. // #ifndef LEECODE_C_MAIN_H #define LEECODE_C_MAIN_H #include #include #include "./structs/Tree.h" #include "./traverse.h" #include "./Heap/test.h" #include "./sorts.h" #include "./structs/Graph.h" #include "./topic/2019.h" #include using namespace std; void run() { vector arr({3, 2, 2, 4, 6, 2, 3}); odd_even(arr); for (int i : arr) { cout << i << " "; } cout << endl; } #endif // LEECODE_C_MAIN_H