i惠风和畅
i惠风和畅
全部文章
分类
归档
标签
去牛客网
登录
/
注册
i惠风和畅的博客
全部文章
(共5篇)
题解 | #大整数排序#
#include<iostream> #include<string> #include<vector> #include<algorithm> using namespace std; void print(string const s){ ...
2024-03-30
0
350
题解 | #Number Steps#
#include <iostream> using namespace std; int main() { int x = 0; int y = 0; while (cin >> x >> y){ if (y == x ...
2024-03-23
0
256
题解 | #Number Steps#
#include <iostream> using namespace std; int main() { int x = 0; int y = 0; while (cin >> x >> y){ if (y == x ...
2024-03-23
0
243
题解 | #编写函数实现字符串翻转(引用方式)#
#include<bits/stdc++.h> using namespace std; void reverse_string(string &s){ int left = 0; int right = s.size() - 1; char temp; while (left ...
2024-03-02
0
312
题解 | #创建二维动态数组#
#include <iostream> #include <vector> using namespace std; int main() { int n; cin >> n; vector<vector<int>&...
2024-03-02
0
286