1
0

main.h 511 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // Created by 李洋 on 2023/10/12.
  3. //
  4. #ifndef LEECODE_C_MAIN_H
  5. #define LEECODE_C_MAIN_H
  6. #include <iostream>
  7. #include <queue>
  8. #include "./structs/Tree.h"
  9. #include "./traverse.h"
  10. #include "./Heap/test.h"
  11. #include "./sorts.h"
  12. #include "./structs/Graph.h"
  13. #include "./topic/2019.h"
  14. #include <iostream>
  15. using namespace std;
  16. void run()
  17. {
  18. vector<int> arr({3, 2, 2, 4, 6, 2, 3});
  19. odd_even(arr);
  20. for (int i : arr)
  21. {
  22. cout << i << " ";
  23. }
  24. cout << endl;
  25. }
  26. #endif // LEECODE_C_MAIN_H
备用站点 当前处于降级运行的备用站点,仅供应急访问,数据和功能可能不是最新。