mirror of
https://git.wolves.top/wolves/leetcode.git
synced 2025-11-04 17:26:32 +08:00
init
This commit is contained in:
31
else/main.h
Normal file
31
else/main.h
Normal 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
|
||||
Reference in New Issue
Block a user