小帅哥HLB
小帅哥HLB
全部文章
分类
题解(5)
归档
标签
去牛客网
登录
/
注册
小帅哥HLB的博客
全部文章
(共5篇)
题解 | #浮点数加法#
">#include<cstdio> #include<string> #include<algorithm> using namespace std; int main(){ string str1,str2; while(cin>>...
C++
2022-03-11
3
381
题解 | #子串计算#
">#include<string> #include<map> using namespace std; int main() { string s; cin >> s; map<string, int> m; //构建散...
C++
2022-03-10
0
276
题解 | #位操作练习#
">#include<cstdio> #include<string> #include<algorithm> using namespace std; string IntToChar(int a) //十进制转化为二进制 { string str ...
C++
2022-03-10
0
294
题解 | #放苹果#
#include <cstdio> #include <string> #include <algorithm> using namespace std; //求m个苹果放n个盘子中的方法数 int ways(int m, int n) { //边界条件 ...
C++
2022-03-10
3
411
八皇后
#include <iostream> #include <vector> #include <algorithm> using namespace std; vector<int> A; int Q[8][8] = {0}; //因为是从上往下...
C++
2022-02-17
6
444