勋谦
勋谦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
勋谦的博客
全部文章
(共77篇)
题解 | #二进制数# 板子题直接套用即可
#include <bits/stdc++.h> using namespace std; string convert(string s,int m,int b){ string ans; for(int i = 0 ;i < s.size();){ int k =...
2024-08-18
0
78
题解 | #找位置# 注释版
#include <bits/stdc++.h> // 导入标准库的所有头文件 using namespace std; // 定义一个结构体 `point`,用来存储字符的相关信息 struct point { int num; // 记录字符在字符串中出现的次数 ...
2024-08-18
0
75
题解 | #找最小数#
#include <iostream> #include <algorithm> using namespace std; struct couple{ int x; int y; }c[100]; int n; bool cmp(couple a,couple ...
2024-08-18
0
76
题解 | #Fibonacci#
#include <iostream> using namespace std; int f(int n) { if (n == 0)return 0; else if (n == 1)return 1; return f(n - 1) + f(n - 2);...
2024-06-28
0
127
题解 | #鸡兔同笼#
#include <iostream> using namespace std; int minn(int n){ if(n % 4 == 0){ return n / 4; }else if(n % 4 == 2){ return n / 4 + 1; } ret...
2024-06-28
0
124
题解 | #二叉树#
递归子问题 #include <iostream> using namespace std; int n,m; int f(int m){ if(m > n)return 0; if(2 * m > n && 2 * m + 1 > n){ ...
2024-06-28
0
133
题解 | #字符串排序# MAP自带排序
一开始想到了使用MAP,但是c++不知道怎么遍历MAP #include <iostream> #include <map> using namespace std; int main(){ int n; while(cin >> n){ getcha...
2024-06-27
0
177
题解 | #数字求和#
#include <iostream> using namespace std; const int N = 10; int a[N]; int main(){ int n; while(cin >> n){ int sum = 0; for(int i...
2024-06-27
0
143
题解 | #字符串排序#
#include <iostream> #include <algorithm> using namespace std; int main(){ string s; while(cin >> s){ sort(s.begin(),s.end());...
2024-06-27
0
125
题解 | #求平均年龄#
#include <iostream> using namespace std; int main(){ int n; while(cin >> n){ double x,sum = 0; for(int i = 0;i < n;i ++){ ...
2024-06-27
0
145
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页