mirror of
https://git.wolves.top/wolves/leetcode.git
synced 2025-11-04 17:26:32 +08:00
32 lines
511 B
C++
32 lines
511 B
C++
//
|
|
// 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
|