first commit

This commit is contained in:
2025-12-18 16:00:22 +08:00
commit 785f306726
69 changed files with 33171 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#include <iostream>
#include <vector>
using namespace std;
/*
* function : print a vector
* param nums : the vector to be printed
* return : ---
*/
void Out(vector<int> &nums)
{
for (int i = 0; i < static_cast<int>(nums.size()); i++)
cout << nums[i] << " ";
cout << endl;
}