在offer比较的肖恩很胆小
在offer比较的肖恩很胆小
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在offer比较的肖恩很胆小的博客
全部文章
(共5篇)
题解 | #互换最大最小数#
#include <bits/stdc++.h> using namespace std; int main() { int n, num; pair<int, int> minPair = make_pair(INT_MAX, -1); pair&...
2024-03-23
0
213
题解 | #玛雅人的密码#
#include <bits/stdc++.h> using namespace std; string swap(string s, int index) { char temp = s[index]; s[index] = s[index + 1]; s[i...
2024-03-22
0
226
题解 | #奥运排序问题#
#include <bits/stdc++.h> #define Rank pair<int,int> // <rank,rank type> using namespace std; using Country = class Node { public:...
2024-03-14
0
229
题解 | #Powerful Calculator#
#include <iostream> #include <vector> #include <algorithm> using namespace std; string addition(string, string); string subtraction...
2024-03-10
0
220
题解 | #复数#
#include <iostream> using namespace std; class ComplexNumber { friend ostream& operator<<(ostream&, ComplexNumber&); pu...
2024-03-09
0
185