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