This commit is contained in:
2025-09-15 21:12:04 +08:00
commit 3f58f483ff
144 changed files with 5298 additions and 0 deletions

31
else/main.h Normal file
View File

@@ -0,0 +1,31 @@
//
// 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