🌈 搜索
📅  最后修改于: 2022-03-11 14:44:54.209000             🧑  作者: Mango
template inline T max(T a, T b) { return a > b ? a : b; } //Example: max(2,5) = 5