support bazel complie this project and format code.

This commit is contained in:
zhangxing
2023-03-30 00:15:11 +08:00
committed by light-city
parent 1f86192576
commit 7529ae3a55
636 changed files with 10025 additions and 9387 deletions

View File

@@ -0,0 +1,31 @@
//
// Created by light on 19-11-4.
//
#include <iostream>
using namespace std;
// 参数type相同的max
int max(initializer_list<int> initializerList) {
int res = *initializerList.begin();
for (auto elem:initializerList)
res = max(res, elem);
return res;
}
// 参数type相同的maximum
int maximum(int n) {
return n;
}
template<typename ...Args>
int maximum(int n, Args...args) {
return std::max(n, maximum(args...));
}
int main() {
cout << max({10, 8, 100, 1}) << endl;
cout << maximum(57, 48, 60, 100, 20, 18) << endl;
}